|
From: <ex...@us...> - 2013-08-19 12:58:49
|
Revision: 6257
http://sourceforge.net/p/web-erp/reponame/6257
Author: exsonqu
Date: 2013-08-19 12:58:46 +0000 (Mon, 19 Aug 2013)
Log Message:
-----------
19/9/2013 Exson: Fixed the typo that should be class integer instead of type integer. Reported by Tim.
Modified Paths:
--------------
trunk/CustomerBranches.php
trunk/PO_SelectPurchOrder.php
trunk/SuppShiptChgs.php
Modified: trunk/CustomerBranches.php
===================================================================
--- trunk/CustomerBranches.php 2013-08-19 09:57:05 UTC (rev 6256)
+++ trunk/CustomerBranches.php 2013-08-19 12:58:46 UTC (rev 6257)
@@ -696,7 +696,7 @@
if (!isset($_POST['FwdDate'])) {
$_POST['FwdDate']=0;
}
- echo '<td><input ' .(in_array('FwdDate',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="12" type="integer" class="number" name="FwdDate" size="4" maxlength="2" value="'. $_POST['FwdDate'].'" /></td>
+ echo '<td><input ' .(in_array('FwdDate',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="12" class="integer" name="FwdDate" size="4" maxlength="2" value="'. $_POST['FwdDate'].'" /></td>
</tr>';
Modified: trunk/PO_SelectPurchOrder.php
===================================================================
--- trunk/PO_SelectPurchOrder.php 2013-08-19 09:57:05 UTC (rev 6256)
+++ trunk/PO_SelectPurchOrder.php 2013-08-19 12:58:46 UTC (rev 6257)
@@ -115,7 +115,7 @@
if (isset($SelectedStockItem)) {
echo _('For the part') . ':<b>' . $SelectedStockItem . '</b> ' . _('and') . ' <input type="hidden" name="SelectedStockItem" value="' . $SelectedStockItem . '" />';
}
- echo _('Order Number') . ': <input type="integer" name="OrderNumber" autofocus="autofocus" maxlength="8" size="9" /> ' . _('Into Stock Location') . ':<select name="StockLocation"> ';
+ echo _('Order Number') . ': <input class="integer" name="OrderNumber" autofocus="autofocus" maxlength="8" size="9" /> ' . _('Into Stock Location') . ':<select name="StockLocation"> ';
$sql = "SELECT loccode, locationname FROM locations";
$resultStkLocs = DB_query($sql, $db);
while ($myrow = DB_fetch_array($resultStkLocs)) {
Modified: trunk/SuppShiptChgs.php
===================================================================
--- trunk/SuppShiptChgs.php 2013-08-19 09:57:05 UTC (rev 6256)
+++ trunk/SuppShiptChgs.php 2013-08-19 12:58:46 UTC (rev 6257)
@@ -110,7 +110,7 @@
echo '<table class="selection">';
echo '<tr>
<td>' . _('Shipment Reference') . ':</td>
- <td><input type="integer" pattern="[1-9][\d]{0,10}" title="'._('The shiment Ref should be positive integer').'" placeholder="'._('positive integer').'" name="ShiptRef" size="12" maxlength="11" value="' . $_POST['ShiptRef'] . '" /></td>
+ <td><input class="integer" pattern="[1-9][\d]{0,10}" title="'._('The shiment Ref should be positive integer').'" placeholder="'._('positive integer').'" name="ShiptRef" size="12" maxlength="11" value="' . $_POST['ShiptRef'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Shipment Selection') . ':
|