hi,
das ist ein bug in der sp1
diese datei musst du austauschen:
inc/xtc_get_all_get_params.inc.php
PHP-Code:
<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_get_all_get_params.inc.php 1310 2005-10-17 10:06:32Z mz $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright (c) 2003 XT-Commerce
-----------------------------------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(general.php,v 1.225 2003/05/29); www.oscommerce.com
(c) 2003 nextcommerce (xtc_get_all_get_params.inc.php,v 1.3 2003/08/13); www.nextcommerce.org
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
function xtc_get_all_get_params($exclude_array = '') {
global $InputFilter;
if (!is_array($exclude_array)) $exclude_array = array();
$get_url = '';
if (is_array($_GET) && (sizeof($_GET) > 0)) {
reset($_GET);
while (list($key, $value) = each($_GET)) {
// if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && ($key != 'cPath') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
$key =rawurlencode(stripslashes($key));
$value=rawurlencode(stripslashes($value));
$get_url .= $key . '=' . $value . '&';
}
}
}
return $get_url;
}
?>
Gruß
TechWay