From: <tim...@us...> - 2010-07-19 18:30:18
|
Revision: 3644 http://web-erp.svn.sourceforge.net/web-erp/?rev=3644&view=rev Author: tim_schofield Date: 2010-07-19 18:30:12 +0000 (Mon, 19 Jul 2010) Log Message: ----------- Change prices security to token 12 Modified Paths: -------------- trunk/SelectProduct.php trunk/doc/Change.log.html trunk/sql/mysql/upgrade3.11.1-3.12.sql Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2010-07-19 11:53:10 UTC (rev 3643) +++ trunk/SelectProduct.php 2010-07-19 18:30:12 UTC (rev 3644) @@ -1,7 +1,7 @@ <?php /* $Id$*/ $PageSecurity = 2; -$PricesSecurity = 9; +$PricesSecurity = 12; include ('includes/session.inc'); $title = _('Search Inventory Items'); include ('includes/header.inc'); Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-07-19 11:53:10 UTC (rev 3643) +++ trunk/doc/Change.log.html 2010-07-19 18:30:12 UTC (rev 3644) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>19/07/10 Tim: SelectProduct.php - Change prices security to token 12</p> <p>19/07/10 Tim: FixedAssetCategories.php - Layout changes and sql quoting</p> <p>19/07/10 Tim: FixedAssetItems.php - Layout changes and include editing of item type</p> <p>19/07/10 Tim: SelectAssetType.php - New script to choose an asset type for editing</p> Modified: trunk/sql/mysql/upgrade3.11.1-3.12.sql =================================================================== --- trunk/sql/mysql/upgrade3.11.1-3.12.sql 2010-07-19 11:53:10 UTC (rev 3643) +++ trunk/sql/mysql/upgrade3.11.1-3.12.sql 2010-07-19 18:30:12 UTC (rev 3644) @@ -280,4 +280,5 @@ ALTER TABLE `loctransfers` CHANGE COLUMN `shipqty` `shipqty` double NOT NULL DEFAULT 0.0; -INSERT INTO `config` VALUES ('VersionNumber', '3.12'); \ No newline at end of file +INSERT INTO `config` VALUES ('VersionNumber', '3.12'); +UPDATE `securitytokens` SET `tokenname`='Prices Security' WHERE tokenid=12; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |