summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-14 13:53:24 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-14 13:53:24 +0000
commitab99bf1b3aa609c14a81ad768601605afff54db2 (patch)
treeff533aaf5e499960092fb9b2ee95e9989709ecd9 /phpfspot.class.php
parent3d567f23a4e45ed8b082fbcd160bd0463b643529 (diff)
issue27, also let the export contain date-search-based views if needed
git-svn-id: file:///var/lib/svn/phpfspot/trunk@203 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 860b5de..4cdf303 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -1252,6 +1252,9 @@ class PHPFSPOT {
if($current_tags != "") {
$orig_url.= "&tags=". $current_tags;
}
+ if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
+ $orig_url.= "&from_date=". $_SESSION['from_date'] ."&to_date=". $_SESSION['to_date'];
+ }
$thumb_url = $protocol ."://". $server_name . $this->cfg->web_path ."phpfspot_img.php?idx=". $picture ."&width=". $this->cfg->thumb_width;