From: <tim...@us...> - 2009-11-20 16:50:34
|
Revision: 3057 http://web-erp.svn.sourceforge.net/web-erp/?rev=3057&view=rev Author: tim_schofield Date: 2009-11-20 16:50:26 +0000 (Fri, 20 Nov 2009) Log Message: ----------- Correction of errors in retrieving the number of months inquiries to show. Modified Paths: -------------- trunk/CustomerInquiry.php trunk/doc/Change.log.html Modified: trunk/CustomerInquiry.php =================================================================== --- trunk/CustomerInquiry.php 2009-11-20 15:35:14 UTC (rev 3056) +++ trunk/CustomerInquiry.php 2009-11-20 16:50:26 UTC (rev 3057) @@ -27,7 +27,8 @@ if (!isset($_POST['TransAfterDate'])) { $sql = 'SELECT confvalue FROM `config` - WHERE confname ="numberOfMonthMustBeShown"'; + WHERE confname ="NumberOfMonthMustBeShown"'; + $ErrMsg=_('The config value NumberOfMonthMustBeShown cannot be retrieved'); $result = DB_query($sql,$db,$ErrMsg); $row = DB_fetch_array($result); $_POST['TransAfterDate'] = Date($_SESSION['DefaultDateFormat'],Mktime(0,0,0,Date('m')-$row['confvalue'],Date('d'),Date('Y'))); Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2009-11-20 15:35:14 UTC (rev 3056) +++ trunk/doc/Change.log.html 2009-11-20 16:50:26 UTC (rev 3057) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p> +<p>20/11/09 Tim: CustomerInquiry.php - Correction of errors in retrieving the number of months inquiries to show. <p>20/11/09 Tim: Create a log file of all status messages. Default is no log. <p>19/11/09 Tim: Improvements to factor company implementaton. <p>18/11/09 Tim: default.css - Correction to jelly theme This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |