Merge branch 'development' of https://github.com/PrestaShop/PrestaShop into development

This commit is contained in:
François Gaillard
2013-04-24 16:38:31 +02:00
24 changed files with 80 additions and 60 deletions
-1
View File
@@ -206,7 +206,6 @@ class DispatcherCore
$this->front_controller = self::FC_ADMIN;
$this->controller_not_found = 'adminnotfound';
$this->default_controller = 'adminhome';
$this->use_routes = false;
}
elseif (Tools::getValue('fc') == 'module')
{
+2 -2
View File
@@ -129,8 +129,8 @@ class LinkCore
$params['tags'] = Tools::str2url($product->getTags($id_lang));
if ($dispatcher->hasKeyword('product_rule', $id_lang, 'category'))
$params['category'] = Tools::str2url($product->category);
$params['category'] = !is_null($product->category) ? Tools::str2url($product->category) : Tools::str2url($category);
if ($dispatcher->hasKeyword('product_rule', $id_lang, 'reference'))
$params['reference'] = Tools::str2url($product->reference);