Revision: 4805
http://web-erp.svn.sourceforge.net/web-erp/?rev=4805&view=rev
Author: tim_schofield
Date: 2012-01-19 10:08:44 +0000 (Thu, 19 Jan 2012)
Log Message:
-----------
Merge Tims branch into trunk: Fix xhtml errors
Modified Paths:
--------------
trunk/GLCodesInquiry.php
Modified: trunk/GLCodesInquiry.php
===================================================================
--- trunk/GLCodesInquiry.php 2012-01-19 07:01:00 UTC (rev 4804)
+++ trunk/GLCodesInquiry.php 2012-01-19 10:08:44 UTC (rev 4805)
@@ -20,7 +20,7 @@
/*show a table of the orders returned by the SQL */
-echo '<table cellpadding=2 colspan=2>
+echo '<table cellpadding="2" colspan="2">
<tr>
<th>' . _('Group') . '</font></th>
<th>' . _('Code') . '</font></th>
@@ -41,18 +41,18 @@
}
if ($myrow['group_']== $ActGrp){
- printf("<td></td>
- <td><font size=2>%s</font></td>
- <td><font size=2>%s</font></td>
- </tr>",
+ printf('<td></td>
+ <td><font size="2">%s</font></td>
+ <td><font size="2">%s</font></td>
+ </tr>',
$myrow['accountcode'],
$myrow['accountname']);
} else {
$ActGrp = $myrow['group_'];
- printf("<td><font size=2>%s</font></td>
- <td><font size=2>%s</font></td>
- <td><font size=2>%s</font></td>
- </tr>",
+ printf('<td><font size="2">%s</font></td>
+ <td><font size="2">%s</font></td>
+ <td><font size="2">%s</font></td>
+ </tr>',
$myrow['group_'],
$myrow['accountcode'],
$myrow['accountname']);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|