diff options
author | mistic100 <mistic@piwigo.org> | 2011-09-01 14:16:00 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-09-01 14:16:00 +0000 |
commit | 88951a79468fefe8504b79c7a43981bf381cbdf8 (patch) | |
tree | 144782ceedd029dfabbee6b5f7c1f8f5ad710278 | |
parent | 0aed5501195b6969bc8b7d18ed4fbe2f3a8bc5db (diff) |
feature:2322 fix a typo in function get_taglist
git-svn-id: http://piwigo.org/svn/trunk@12030 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 824a489ea..f5498ac8b 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -2061,7 +2061,7 @@ function get_taglist($query) ); } - $row['tag_name'] = preg_replace('#\[lang=(.*?)\](.*?)\[/lang\]#is', null, $row['tag_name']); + $row['name'] = preg_replace('#\[lang=(.*?)\](.*?)\[/lang\]#is', null, $row['name']); } if (strlen($row['name']) > 0) |