From 1990311d6b206be12f9a64af140655bb8508a261 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Wed, 26 Sep 2012 12:55:34 +0000 Subject: [PATCH] [-] BO : fixed bug #PSCFV-4355 --- controllers/admin/AdminCategoriesController.php | 2 +- controllers/admin/AdminMetaController.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/admin/AdminCategoriesController.php b/controllers/admin/AdminCategoriesController.php index 3a465fdcb..4ccbee68d 100644 --- a/controllers/admin/AdminCategoriesController.php +++ b/controllers/admin/AdminCategoriesController.php @@ -440,7 +440,7 @@ class AdminCategoriesControllerCore extends AdminController 'name' => 'link_rewrite', 'lang' => true, 'required' => true, - 'hint' => $this->l('Forbidden characters:').' <>;=#{}%' + 'hint' => $this->l('Only letters and the minus (-) character are allowed') ), array( 'type' => 'group', diff --git a/controllers/admin/AdminMetaController.php b/controllers/admin/AdminMetaController.php index 168f720d9..a7380e906 100644 --- a/controllers/admin/AdminMetaController.php +++ b/controllers/admin/AdminMetaController.php @@ -293,7 +293,7 @@ class AdminMetaControllerCore extends AdminController 'name' => 'url_rewrite', 'lang' => true, 'required' => true, - 'hint' => $this->l('Invalid characters:').' <>;=#{}', + 'hint' => $this->l('Only letters and the minus (-) character are allowed'), 'desc' => $this->l('e.g. "contacts" for http://mysite.com/shop/contacts to redirect to http://mysite.com/shop/contact-form.php'), 'size' => 50 ),