Jump to content
xt:Commerce Community Forum

Version 3.04 SP 1 Seitennavigation Kategorie Listing geht nicht


webwalkers

Recommended Posts

Hallo,

ich habe ein kleines Problem mit der Seitennavigation innerhalb der Produkte einer Kategorie.

Es werden die Seiten unten angezeigt jedoch ist hier der Link falsch.

Als Link wird angzeigt: http://www.meinedomain.de/index.php/category/Ersatzteile-aussen-liegend/page/2

Dieser Link führt zur Shopstartseite.

Richtig wäre: http://www.meindedomain.de/index.php/cPath/20/category/Ersatzteile-aussen-liegend/page/2

Weiss jemand wo man das editieren kann?

Hab in der split_page_result.php geguckt aber das blick ich beim zumsammensetzen des Links nicht ganz durch.

Gruß

Andi

Link to comment
Share on other sites

hi,

das ist ein bug in der sp1

diese datei musst du austauschen:

inc/xtc_get_all_get_params.inc.php


<?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;
}
?>
[/PHP]

Gruß

TechWay

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...