mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
bug 1423 fixed: support for ExtendedDescription (and all the ones using the
"render_category_name" event) in category names. git-svn-id: http://piwigo.org/svn/branches/2.0@4902 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -427,6 +427,14 @@ SELECT id, name, permalink, uppercats, global_rank,
|
||||
$row[$key] = (int)$row[$key];
|
||||
}
|
||||
|
||||
$row['name'] = strip_tags(
|
||||
trigger_event(
|
||||
'render_category_name',
|
||||
$row['name'],
|
||||
'ws_categories_getList'
|
||||
)
|
||||
);
|
||||
|
||||
array_push($cats, $row);
|
||||
}
|
||||
usort($cats, 'global_rank_compare');
|
||||
@@ -485,6 +493,13 @@ SELECT
|
||||
{
|
||||
$id = $row['id'];
|
||||
$row['nb_images'] = isset($nb_images_of[$id]) ? $nb_images_of[$id] : 0;
|
||||
$row['name'] = strip_tags(
|
||||
trigger_event(
|
||||
'render_category_name',
|
||||
$row['name'],
|
||||
'ws_categories_getAdminList'
|
||||
)
|
||||
);
|
||||
array_push($cats, $row);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user