Thanks for this information.. I am repairing the other oscmax installations I maintain but there is 1 vanilla osc that this effects also.. the fix does not work there.. suggestions besides upgrading?? The cart will get upgraded but I need a quick fix for the time being, this one is on the bottom of the pile of ones to upgrade..

I made these 2 changes and it did not help

Code:
// set php_self in the local scope
//$PHP_SELF = (isset($HTTP_SERVER_VARS['PHP_SELF']) ? $HTTP_SERVER_VARS['PHP_SELF'] : $HTTP_SERVER_VARS['SCRIPT_NAME']);
 
$PHP_SELF = $_SERVER['PHP_SELF'];
 
// include the language translations
require(DIR_WS_LANGUAGES . $language . '.php');
//$current_page = basename($PHP_SELF);
$current_page = basename($_SERVER['SCRIPT_FILENAME'])