|
From: <dai...@us...> - 2012-02-28 09:43:05
|
Revision: 4985
http://web-erp.svn.sourceforge.net/web-erp/?rev=4985&view=rev
Author: daintree
Date: 2012-02-28 09:42:54 +0000 (Tue, 28 Feb 2012)
Log Message:
-----------
xhtml
Modified Paths:
--------------
trunk/GLAccountInquiry.php
trunk/GLProfit_Loss.php
trunk/GLTagProfit_Loss.php
Modified: trunk/GLAccountInquiry.php
===================================================================
--- trunk/GLAccountInquiry.php 2012-02-28 09:38:19 UTC (rev 4984)
+++ trunk/GLAccountInquiry.php 2012-02-28 09:42:54 UTC (rev 4985)
@@ -30,7 +30,7 @@
$DefaultPeriodDate = Date ('Y-m-d', Mktime(0,0,0,Date('m'),0,Date('Y')));
/*Show a form to allow input of criteria for TB to show */
-echo '<table class="selection"><tr><td>'._('Account').':</td><td><select Name="Account">';
+echo '<table class="selection"><tr><td>'._('Account').':</td><td><select name="Account">';
$sql = "SELECT accountcode, accountname FROM chartmaster ORDER BY accountcode";
$Account = DB_query($sql,$db);
while ($myrow=DB_fetch_array($Account,$db)){
@@ -61,7 +61,7 @@
}
echo '</select></td></tr>';
// End select tag
-echo '<tr> <td>'._('For Period range').':</td><td><select Name=Period[] multiple>';
+echo '<tr> <td>'._('For Period range').':</td><td><select name=Period[] multiple>';
$sql = "SELECT periodno, lastdate_in_period FROM periods ORDER BY periodno DESC";
$Periods = DB_query($sql,$db);
$id=0;
Modified: trunk/GLProfit_Loss.php
===================================================================
--- trunk/GLProfit_Loss.php 2012-02-28 09:38:19 UTC (rev 4984)
+++ trunk/GLProfit_Loss.php 2012-02-28 09:42:54 UTC (rev 4985)
@@ -83,7 +83,7 @@
echo '<tr>
<td>' . _('Select Period To') . ':</td>
- <td><select Name="ToPeriod">';
+ <td><select name="ToPeriod">';
$RetResult = DB_data_seek($Periods,0);
Modified: trunk/GLTagProfit_Loss.php
===================================================================
--- trunk/GLTagProfit_Loss.php 2012-02-28 09:38:19 UTC (rev 4984)
+++ trunk/GLTagProfit_Loss.php 2012-02-28 09:42:54 UTC (rev 4985)
@@ -36,7 +36,7 @@
echo '<table class="selection">
<tr>
<td>' . _('Select Period From') . ':</td>
- <td><select Name="FromPeriod">';
+ <td><select name="FromPeriod">';
$sql = "SELECT periodno,
lastdate_in_period
@@ -76,7 +76,7 @@
echo '<tr>
<td>' . _('Select Period To') . ':</td>
- <td><select Name="ToPeriod">';
+ <td><select name="ToPeriod">';
$RetResult = DB_data_seek($Periods,0);
@@ -113,7 +113,7 @@
echo '<tr>
<td>'._('Detail Or Summary').':</td>
- <td><select Name="Detail">
+ <td><select name="Detail">
<option selected="selected" value="Summary">'._('Summary') . '</option>
<option selected="selected" value="Detailed">'._('All Accounts') . '</option>
</select>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|