aboutsummaryrefslogtreecommitdiffstats
path: root/include/template.class.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2009-03-12 13:18:17 +0000
committerpatdenice <patdenice@piwigo.org>2009-03-12 13:18:17 +0000
commitbd005369b0fba847ed4a4cd2fc9ec57290f6b7fb (patch)
tree4a4404294086f597756136c252622359f1f015d4 /include/template.class.php
parentdc6176db21dfee3b786feeb29cd32e33a036b4c0 (diff)
URL parameter for template extensions can be used in slideshow.
git-svn-id: http://piwigo.org/svn/trunk@3190 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/template.class.php')
-rw-r--r--include/template.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template.class.php b/include/template.class.php
index 386f3123a..14ef8653b 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -199,7 +199,7 @@ class Template {
return false;
}
- if ((stripos(implode('/',array_flip($_GET)), $param) > 0 or $param == 'N/A')
+ if ((stripos(implode('/',array_keys($_GET)), $param) > 0 or $param == 'N/A')
and (preg_match('/'.preg_quote($tpl,'/').'$/', $this->get_template_dir()) or $tpl == 'N/A')
and (!isset($this->extents[$handle]) or $overwrite)
and file_exists($dir . $filename))