|
From: <dai...@us...> - 2017-03-28 07:02:22
|
Revision: 7743
http://sourceforge.net/p/web-erp/reponame/7743
Author: daintree
Date: 2017-03-28 07:02:20 +0000 (Tue, 28 Mar 2017)
Log Message:
-----------
Abel define $ReportList as an array in index.php
Modified Paths:
--------------
trunk/doc/Change.log
trunk/doc/Manual/ManualContributors.html
trunk/index.php
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-03-21 03:58:00 UTC (rev 7742)
+++ trunk/doc/Change.log 2017-03-28 07:02:20 UTC (rev 7743)
@@ -1,5 +1,6 @@
webERP Change Log
+26/3/17 Abel World: Make degine $ReportList as an array to comply with PHP 7
19/3/17 RChacon: Rename AccountSectionsDef.inc to AccountSectionsDef.php.
11/3/17 Tim - committed by Phil: allow sales order item lines to be imported from a csv consisting of lines of item code, quantity
07/03/17 TurboPT: (by Tim in forums) BankAccounts.php: Add quotes to variable in query.
Modified: trunk/doc/Manual/ManualContributors.html
===================================================================
--- trunk/doc/Manual/ManualContributors.html 2017-03-21 03:58:00 UTC (rev 7742)
+++ trunk/doc/Manual/ManualContributors.html 2017-03-28 07:02:20 UTC (rev 7743)
@@ -90,6 +90,7 @@
<p>Marcos Garcia Trejo</p>
<p>Jeff Trickett</p>
<p>Wes Wolfenbarger</p>
+ <p>Abel World</p>
<p>Mark Yeager (MRP)</p>
<p>Zhiguo Yuan</p>
</td>
Modified: trunk/index.php
===================================================================
--- trunk/index.php 2017-03-21 03:58:00 UTC (rev 7742)
+++ trunk/index.php 2017-03-28 07:02:20 UTC (rev 7743)
@@ -192,7 +192,7 @@
ORDER BY groupname,
reportname";
$Result=DB_query($sql,'','',false,true);
- $ReportList = '';
+ $ReportList = array();
while ($Temp = DB_fetch_array($Result)) {
$ReportList[] = $Temp;
}
|