From: <tim...@us...> - 2010-06-10 19:52:13
|
Revision: 3488 http://web-erp.svn.sourceforge.net/web-erp/?rev=3488&view=rev Author: tim_schofield Date: 2010-06-10 19:52:07 +0000 (Thu, 10 Jun 2010) Log Message: ----------- Tim: GoodsReceived.php - session.inc should come before any calls to gettext _() function. Modified Paths: -------------- trunk/GoodsReceived.php trunk/doc/Change.log.html Modified: trunk/GoodsReceived.php =================================================================== --- trunk/GoodsReceived.php 2010-06-09 15:11:00 UTC (rev 3487) +++ trunk/GoodsReceived.php 2010-06-10 19:52:07 UTC (rev 3488) @@ -7,9 +7,9 @@ $PageSecurity = 11; /* Session started in header.inc for password checking and authorisation level check */ +include('includes/session.inc'); include('includes/DefinePOClass.php'); include('includes/DefineSerialItems.php'); -include('includes/session.inc'); include('includes/SQL_CommonFunctions.inc'); if (empty($identifier)) { $identifier=''; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-06-09 15:11:00 UTC (rev 3487) +++ trunk/doc/Change.log.html 2010-06-10 19:52:07 UTC (rev 3488) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>10/06/10 Tim: GoodsReceived.php - session.inc should come before any calls to gettext _() function.</p> <p>09/06/10 Harald: Contracts.php - Fix typo in error message.</p> <p>09/06/10 Tim: UserSettings.php - Fix sql error for case when password is being updated.</p> <p>08/06/10 Tim: Add option to exclude value information from GRN screen</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |