|
From: <tu...@us...> - 2017-12-20 01:29:06
|
Revision: 7893
http://sourceforge.net/p/web-erp/reponame/7893
Author: turbopt
Date: 2017-12-20 01:29:04 +0000 (Wed, 20 Dec 2017)
Log Message:
-----------
PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file)
Modified Paths:
--------------
trunk/PDFOrderStatus.php
trunk/doc/Change.log
Modified: trunk/PDFOrderStatus.php
===================================================================
--- trunk/PDFOrderStatus.php 2017-12-20 01:10:51 UTC (rev 7892)
+++ trunk/PDFOrderStatus.php 2017-12-20 01:29:04 UTC (rev 7893)
@@ -2,7 +2,7 @@
/* $Id$*/
-include ('includes/session.php');
+include('includes/session.php');
include('includes/SQL_CommonFunctions.inc');
$InputError=0;
@@ -86,7 +86,6 @@
include('includes/footer.php');
exit;
} else {
- include('includes/ConnectDB.inc');
include('includes/PDFStarter.php');
$pdf->addInfo('Title',_('Order Status Report'));
$pdf->addInfo('Subject',_('Orders from') . ' ' . $_POST['FromDate'] . ' ' . _('to') . ' ' . $_POST['ToDate']);
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-12-20 01:10:51 UTC (rev 7892)
+++ trunk/doc/Change.log 2017-12-20 01:29:04 UTC (rev 7893)
@@ -1,5 +1,6 @@
webERP Change Log
+19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file)
19/12/17 PaulT: Change.log: Correct my Day/Month entry references over the last few days.
19/12/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist.
19/12/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified.
|