Skip to content

Commit

Permalink
Update EDIMessageFormat.php
Browse files Browse the repository at this point in the history
Add changes applied during commit 7944.

There are apparently SVN issues with this file, as the changes that were committed are not present.
Looking at the diff on SF, there are specific file entries that have: "Can't load diff". These are apparently files that have SVN trouble.
  • Loading branch information
TurboPT committed Feb 28, 2018
1 parent b41ef95 commit a370b11
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions EDIMessageFormat.php
@@ -1,6 +1,6 @@
<?php

/* $Id$*/
/* $Id: EDIMessageFormat.php 7944 2018-02-09 18:22:45Z turbopt $*/

include('includes/session.php');
$Title = _('EDI Message Format');
Expand Down Expand Up @@ -132,19 +132,10 @@
</tr>';
echo $TableHeader;

$k=0; //row colour counter
while ($myrow = DB_fetch_row($result)) {

if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k++;
}


printf('<td>%s</td>
printf('<tr class="striped_row">
<td>%s</td>
<td class="number">%s</td>
<td>%s</td>
<td><a href="%s&amp;SelectedMessageLine=%s">' . _('Edit') . '</a></td>
Expand All @@ -153,9 +144,9 @@
$myrow[1],
$myrow[2],
$myrow[3],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?' . SID,
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'),
$myrow[0],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?' . SID,
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'),
$myrow[0]);

} //END WHILE LIST LOOP
Expand Down Expand Up @@ -251,4 +242,4 @@
echo '</form>';

include('includes/footer.php');
?>
?>

0 comments on commit a370b11

Please sign in to comment.