Hello
I was also having this problem in /admin/order.php
I ended up doing the following;
1. Comment out lines 181 - 193
PHP Code:
}
}
if (($action == 'edit') && isset($_GET['oID'])) {
$oID = zen_db_prepare_input($_GET['oID']);
$orders = $db->Execute("select orders_id from " . TABLE_ORDERS . "
where orders_id = '" . (int)$oID . "'");
$order_exists = true;
if ($orders->RecordCount() <= 0) {
$order_exists = false;
$messageStack->add(sprintf(ERROR_ORDER_DOES_NOT_EXIST, $oID), 'error');
2. Comment out line 253 as it's a second declaration
PHP Code:
include(DIR_WS_CLASSES . 'order.php');
Hope this helps someone - and if anyone thinks I'm wrong p[lease let me know...
Thanks
Andy
Bookmarks