This is a discussion on Infobox Admin within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; The left and right column buttons didn't work for me in Internet Explorer. To fix this open admin/infobox_configuration.php and find: ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| The left and right column buttons didn't work for me in Internet Explorer. To fix this open admin/infobox_configuration.php and find: case 'setflagcolumn': //set the status of a box left or right. if ( ($HTTP_GET_VARS['flag'] == 'left') || ($HTTP_GET_VARS['flag'] == 'right') ) { if ($HTTP_GET_VARS['cID']) { tep_db_query("update " . TABLE_THEME_CONFIGURATION . " set configuration_column = '" . $HTTP_GET_VARS['flag'] . "' where configuration_id = '" . (int)$cID . "'"); } } Replace it with: case 'setflagcolumn': //set the status of a box left or right. if ( ($HTTP_GET_VARS['flag'] == 'left') || ($HTTP_GET_VARS['flag'] == 'right') ) { if ($HTTP_GET_VARS['cID']) { tep_db_query("update " . TABLE_THEME_CONFIGURATION . " set configuration_column = '" . $HTTP_GET_VARS['flag'] . "' where configuration_id = '" . $HTTP_GET_VARS['cID'] . "'"); } } That should do the trick! The only difference is the configuration_id. Changed it from (int)$cID to $HTTP_GET_VARS['cID'] Hope this helps. NOTE: Zip contains .txt file with above text. More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Infobox Admin | michael_s | New osCommerce Contributions | 0 | 01-29-2007 05:01 PM |
| Turning On/Off Infobox Admin??? | ironjaxxx | osCMax v2 Customization/Mods | 6 | 10-03-2006 05:43 PM |
| infobox admin | chfields | osCMax v2 Features Discussion | 1 | 10-25-2005 09:20 AM |
| Where did InfoBox Admin Go | matthew2582 | osCMax v2 Features Discussion | 0 | 07-21-2005 02:16 PM |
| Where did Infobox Admin v2.2.1 come from | RyanSmith | osCMax v2 Features Discussion | 2 | 06-24-2005 07:08 AM |