diff options
author | plegall <plg@piwigo.org> | 2013-12-12 10:40:39 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-12-12 10:40:39 +0000 |
commit | 04230f054776c4a6b1c28ddcc1a2e302be96d6e8 (patch) | |
tree | e8a85bdbba724bbdea05e74bef058c29084cb06c /admin.php | |
parent | 483cce26121918960163e501b4feb132572cc76d (diff) |
bug 2953 fixed: ['QUERY_STRING'] is not alway set
git-svn-id: http://piwigo.org/svn/trunk@25930 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ $test_get = $_GET; unset($test_get['page']); unset($test_get['section']); unset($test_get['tag']); -if (count($test_get) == 0) +if (count($test_get) == 0 and !empty($_SERVER['QUERY_STRING'])) { $change_theme_url.= str_replace('&', '&', $_SERVER['QUERY_STRING']).'&'; } |