[-] FO : #PSFV-553 - Fix bugs with pager and ordering with some controllers

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13642 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-02-27 16:34:32 +00:00
parent 17aca59d9f
commit 9b0b2c4aa3
3 changed files with 29 additions and 16 deletions
+13 -5
View File
@@ -416,14 +416,22 @@ class LinkCore
public function getPaginationLink($type, $id_object, $nb = false, $sort = false, $pagination = false, $array = false)
{
// If no parameter $type, try to get it by using the controller name
if (!$type && !$id_object)
{
$method_name = 'get'.Dispatcher::getInstance()->getController().'Link';
if (method_exists($this, $method_name) && isset($_GET['id_'.Dispatcher::getInstance()->getController()]))
{
$type = Dispatcher::getInstance()->getController();
$id_object = $_GET['id_'.Dispatcher::getInstance()->getController()];
}
}
if ($type && $id_object)
$url = $this->{'get'.$type.'Link'}($id_object, null);
else
{
$url = $this->url;
if (Configuration::get('PS_REWRITING_SETTINGS'))
$url = $this->getPageLink(basename($url));
}
$url = $this->getPageLink(Context::getContext()->controller->php_self);
$vars = (!$array) ? '' : array();
$vars_nb = array('n', 'search_query');
$vars_sort = array('orderby', 'orderway');