aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/extend_for_templates.php4
-rw-r--r--include/template.class.php2
2 files changed, 4 insertions, 2 deletions
diff --git a/admin/extend_for_templates.php b/admin/extend_for_templates.php
index 2f3bbc92b..44ea50961 100644
--- a/admin/extend_for_templates.php
+++ b/admin/extend_for_templates.php
@@ -60,7 +60,9 @@ $relevant_parameters = array(
'posted-monthly-calendar',
'search',
'flat',
- 'list',); /* <=> Random */
+ 'list', /* <=> Random */
+ 'tags',
+ );
$query = '
SELECT permalink
FROM '.CATEGORIES_TABLE.'
diff --git a/include/template.class.php b/include/template.class.php
index 14ef8653b..be9aeda97 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -199,7 +199,7 @@ class Template {
return false;
}
- if ((stripos(implode('/',array_keys($_GET)), $param) > 0 or $param == 'N/A')
+ if ((stripos(implode('',array_keys($_GET)), '/'.$param) !== false 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))