|
From: <dai...@us...> - 2013-11-15 23:37:42
|
Revision: 6403
http://sourceforge.net/p/web-erp/reponame/6403
Author: daintree
Date: 2013-11-15 23:37:39 +0000 (Fri, 15 Nov 2013)
Log Message:
-----------
MacPhotoBiker: shipment charges html5 type=number removed to use the class=number javascript
Modified Paths:
--------------
trunk/SuppShiptChgs.php
trunk/doc/INSTALL.txt
trunk/sql/mysql/country_sql/demo.sql
Modified: trunk/SuppShiptChgs.php
===================================================================
--- trunk/SuppShiptChgs.php 2013-11-14 17:22:11 UTC (rev 6402)
+++ trunk/SuppShiptChgs.php 2013-11-15 23:37:39 UTC (rev 6403)
@@ -145,7 +145,7 @@
}
echo '<tr>
<td>' . _('Amount') . ':</td>
- <td><input type="number" pattern="(?!^[-]?0[,.]0*$).{1,11}" required="required" title="'._('The input must be non zero number').'" placeholder="'._('Non zero number').'" name="Amount" size="12" maxlength="11" value="' . locale_number_format($_POST['Amount'],$_SESSION['SuppTrans']->CurrDecimalPlaces) . '" /></td>
+ <td><input type="text" class="number" required="required" title="'._('The input must be non zero number').'" placeholder="'._('Non zero number').'" name="Amount" size="12" maxlength="11" value="' . locale_number_format($_POST['Amount'],$_SESSION['SuppTrans']->CurrDecimalPlaces) . '" /></td>
</tr>
</table>';
Modified: trunk/doc/INSTALL.txt
===================================================================
--- trunk/doc/INSTALL.txt 2013-11-14 17:22:11 UTC (rev 6402)
+++ trunk/doc/INSTALL.txt 2013-11-15 23:37:39 UTC (rev 6403)
@@ -22,7 +22,7 @@
If you are running the upgrade script with the mysql command line client, after editing the script as described above the syntax to use is as follows:
-mysql --user=weberp_db_user --password='some_pass' < /webERP/sql/upgradescriptname.sql
+mysql --user=weberp_db_user --password='some_pass' < /webERP/sql/mysql/upgradescriptname.sql
where weberp_db_user is the name of your mysql user and some_pass is the password for that user.
Modified: trunk/sql/mysql/country_sql/demo.sql
===================================================================
--- trunk/sql/mysql/country_sql/demo.sql 2013-11-14 17:22:11 UTC (rev 6402)
+++ trunk/sql/mysql/country_sql/demo.sql 2013-11-15 23:37:39 UTC (rev 6403)
@@ -1,5 +1,3 @@
-CREATE DATABASE IF NOT EXISTS weberpdemo;
-USE weberpdemo;
SET FOREIGN_KEY_CHECKS = 0;
-- MySQL dump 10.13 Distrib 5.5.32, for debian-linux-gnu (x86_64)
--
|