From 97ef1cbd57eb866e5fadc18e1b7819fe990795c4 Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 11 Jun 2013 04:35:32 +0000 Subject: history - merge album/tags link into a single column (table is already very large and these columns are mutually exclusive - add tags link in the history table git-svn-id: http://piwigo.org/svn/trunk@23151 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/history.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'admin/history.php') diff --git a/admin/history.php b/admin/history.php index 0412113f5..25a25ee67 100644 --- a/admin/history.php +++ b/admin/history.php @@ -337,9 +337,14 @@ SELECT $query = ' SELECT id, - name + name, url_name FROM '.TAGS_TABLE; - $name_of_tag = simple_hash_from_query($query, 'id', 'name'); + $name_of_tag = array(); + $result = pwg_query($query); + while ($row=pwg_db_fetch_assoc($result)) + { + $name_of_tag[ $row['id'] ] = ''.trigger_event("render_tag_name", $row['name']).''; + } } $i = 0; -- cgit v1.2.3