|
From: <tu...@us...> - 2017-12-19 04:31:42
|
Revision: 7889
http://sourceforge.net/p/web-erp/reponame/7889
Author: turbopt
Date: 2017-12-19 04:31:39 +0000 (Tue, 19 Dec 2017)
Log Message:
-----------
ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink)
Modified Paths:
--------------
trunk/doc/Change.log
trunk/reportwriter/admin/ReportCreator.php
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-12-19 00:06:37 UTC (rev 7888)
+++ trunk/doc/Change.log 2017-12-19 04:31:39 UTC (rev 7889)
@@ -1,5 +1,6 @@
webERP Change Log
+11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink)
11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker)
11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker)
11/15/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker)
Modified: trunk/reportwriter/admin/ReportCreator.php
===================================================================
--- trunk/reportwriter/admin/ReportCreator.php 2017-12-19 00:06:37 UTC (rev 7888)
+++ trunk/reportwriter/admin/ReportCreator.php 2017-12-19 04:31:39 UTC (rev 7889)
@@ -35,7 +35,8 @@
require_once('defaults.php');
require('RCFunctions.inc');
-$usrMsg = ''; // initialize array for return messages
+$usrMsg = array(); // initialize array for return messages
+
// a valid report id needs to be passed as a post field to do anything, except create new report
if (!isset($_POST['ReportID'])) { // entered for the first time or created new report
$ReportID = '';
|