summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-05-04 19:56:57 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-05-04 21:52:40 +0200
commitca733ba231fa3da5dc9c6eb0d80eca175c7afe5e (patch)
tree5dacefe5f0ab738f66656383a20d9c84b36cdc0f /phpfspot.class.php
parent8a050d435329e91cf33fc12f56c82b7a4b479d0a (diff)
display initial available-tag list without the help of AJAX
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 8305ba5..55bd713 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -314,8 +314,11 @@ class PHPFSPOT {
$this->tmpl->assign('from_date', $this->get_calendar('from'));
$this->tmpl->assign('to_date', $this->get_calendar('to'));
- if(!isset($content))
+ if(!isset($content)) {
+ $this->tmpl->assign('preset_selected_tags', $this->getSelectedTags());
+ $this->tmpl->assign('preset_available_tags', $this->getAvailableTags());
$this->tmpl->assign('content_page', $this->tmpl->fetch('welcome.tpl'));
+ }
else
$this->tmpl->assign('content_page', $content);
@@ -733,7 +736,7 @@ class PHPFSPOT {
}
$output = substr($output, 0, strlen($output)-2);
- print $output;
+ return $output;
} // getAvailableTags()
@@ -3121,7 +3124,6 @@ class PHPFSPOT {
if(is_numeric($options[2])) {
$_GET['mode'] = 'showpi';
$_SESSION['selected_tags'] = Array($options[2]);
- $this->tmpl->assign('preset_selected_tags', $this->getSelectedTags());
$_GET['tags'] = $options[2];
return $this->showPhotoIndex();
}