category-name should not be escaped

This commit is contained in:
Carsten Wolff 2004-07-11 13:21:08 +00:00
parent f2b7d8deda
commit ec79d81130

View File

@ -3007,7 +3007,7 @@
foreach($cats as $cat_id)
{
list($cat) = $this->cat->return_single($cat_id);
$cat_string[] = $cat['name'];
$cat_string[] = stripslashes($cat['name']);
}
$var['category'] = Array(
'field' => lang('Category'),