diff options
author | plegall <plg@piwigo.org> | 2007-03-28 22:28:54 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2007-03-28 22:28:54 +0000 |
commit | 60903d8c88c976ff4886fd72a7e5e37f7c7a79b8 (patch) | |
tree | 1f7bf214bb262c85c4fdc7d31e5ebfa73b7c0b2e | |
parent | 87323dd957e912405a5c91662647ba4ee2eda077 (diff) |
Bug fixed: in history filter screen, when no lines to display, a variable
was not defined but used later. (warning removed)
git-svn-id: http://piwigo.org/svn/trunk@1929 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/history.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/admin/history.php b/admin/history.php index e47b33be5..59db2e285 100644 --- a/admin/history.php +++ b/admin/history.php @@ -337,6 +337,7 @@ SELECT $history_lines = array(); $user_ids = array(); + $username_of = array(); $category_ids = array(); $image_ids = array(); $tag_ids = array(); |