filename: admin/categories.php
** around 793 number line this block
';
?>
is replaced by this block :
';
?>
** around 804 number line find this block
';
?>
isreplaced by this block :
';
?>
admin/includes/language/english.php
this line is added : define('TEXT_INSTALL_GOLD_STORE', 'To add additional payment gateways Click Here>>');
checkout_payment.php
the line around 131 if (isset($HTTP_GET_VARS['payment_error']) && is_object(${$HTTP_GET_VARS['payment_error']}) && ($error = ${$HTTP_GET_VARS['payment_error']}->get_error())) {
is replaced by if (isset($HTTP_GET_VARS['payment_error']) && is_object($GLOBALS[$HTTP_GET_VARS['payment_error']]) && ($error = $GLOBALS[$HTTP_GET_VARS['payment_error']]->get_error())) {
includes/header
** this line around 18 is blocked :
' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . ''; ?>
** this block :
was removed and this block
is placed after this line : trail(' » '); ?>
arond line 30
admin/included/boxes/configuration.php
**this block is removed :
array(
'code' => FILENAME_STORE_LOGO,
'title' => BOX_CONFIGURATION_STORE_LOGO,
'link' => tep_href_link(FILENAME_STORE_LOGO)
)
includes/modules/boxes/bm_shopping_cart.php
** around line 55 this line :
$cart_contents_string .= '';
was replaced by
$cart_contents_string .= ' | ';
includes/application_top.php
** this block :
foreach($_POST as $key=>$val)
$HTTP_POST_VARS[$key]=$val;
foreach($_GET as $key=>$val)
$HTTP_GET_VARS[$key]=$val;
is replaced by this block :
foreach($_POST as $key=>$val)
$HTTP_POST_VARS[$key]=$val;
foreach($_GET as $key=>$val){
if($key=="products_id")
$_GET[$key]=$HTTP_GET_VARS[$key]=str_replace(array('-','_'),array('{','}'),$val);
else
$HTTP_GET_VARS[$key]=$val;
}
inclues/modules/boxes/bm_languages.php:
this line here,
$languages_string .= ' ' . tep_image(DIR_WS_LANGUAGES . $value['directory'] . '/images/' . $value['image'], $value['name']) . ' ';
is replaced by this line :
$languages_string .= ' ' . tep_image(HTTP_SERVER.DIR_WS_HTTP_CATALOG.'includes/languages/' . $value['directory'] . '/images/' . $value['image'], $value['name']) . ' ';
inclues/modules/social_bookmarks/sb_email.php
this line here ,
return ' ';
is replaced by
return ' ';
inclues/modules/social_bookmarks/sb_facebook.php
this line here,
return ' ';
is replaced by
return ' ';
inclues/modules/social_bookmarks/sb_google_buzz.php
this line here,
return ' ';
is replaced by
return ' ';
inclues/modules/social_bookmarks/sb_twitter.php
this line here,
return ' ';
is replaced by
return ' ';
inclues/modules/social_bookmarks/sb_digg.php
this line here,
return ' ';
is replaced by
return ' ';
ext/jquery/ui/redmond/jquery-ui-1.8.6.css
this line tdb1,#tdb2,#tdb3,a#tdb4{border:0px;background:none;} is replaced by
#headerShortcuts #tdb1,#headerShortcuts #tdb2,#headerShortcuts #tdb3,#headerShortcuts #tdb4{border:0px;background:none;} |