[-] BO : fixed bug #PSCFV-4288
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17485 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -440,7 +440,7 @@ class AdminCategoriesControllerCore extends AdminController
|
||||
'name' => 'link_rewrite',
|
||||
'lang' => true,
|
||||
'required' => true,
|
||||
'hint' => $this->l('Forbidden characters:').' <>;=#{}'
|
||||
'hint' => $this->l('Forbidden characters:').' <>;=#{}%'
|
||||
),
|
||||
array(
|
||||
'type' => 'group',
|
||||
@@ -544,7 +544,7 @@ class AdminCategoriesControllerCore extends AdminController
|
||||
$object = parent::processAdd();
|
||||
|
||||
//if we create a you root category you have to associate to a shop before to add sub categories in. So we redirect to AdminCategories listing
|
||||
if (Tools::isSubmit('is_root_category'))
|
||||
if ($object && Tools::isSubmit('is_root_category'))
|
||||
Tools::redirectAdmin(self::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminCategories').'&conf=3');
|
||||
|
||||
return $object;
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ function str2url(str,encoding,ucfirst)
|
||||
|
||||
function copy2friendlyURL()
|
||||
{
|
||||
$('#link_rewrite_' + id_language).val(str2url($('#name_' + id_language).val().replace(/^[0-9]+\./, ''), 'UTF-8'));
|
||||
$('#link_rewrite_' + id_language).val(str2url($('#name_' + id_language).val().replace(/^[0-9]+\./, ''), 'UTF-8').replace('%', ''));
|
||||
if ($('#friendly-url'))
|
||||
$('#friendly-url').html($('#link_rewrite_' + id_language).val());
|
||||
// trigger onchange event to use anything binded there
|
||||
|
||||
Reference in New Issue
Block a user