I am trying to revamp a old module from Oscommerce 2.3 for Phoenix to make edit to my Orders-
On updating the Shipping Method to the order I get below error-
Notice: Undefined index: shipping in /xx/xx/includes/modules/order_total/ot_shipping.php on line 39
And the line 39 in the module is-
Code: Select all
$module = substr($_SESSION['shipping']['id'], 0, strpos($_SESSION['shipping']['id'], '_'));I tried below code still no avail I get the same error-
Code: Select all
if (!isset($module)) {
$module = substr($_SESSION['shipping']['id'], 0, strpos($_SESSION['shipping']['id'], '_'));
}Thank you in advance;
Warm Regds./
radhavallabh