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 ),