From: Andreas Unterkircher Date: Sat, 14 Jul 2007 13:53:24 +0000 (+0000) Subject: issue27, also let the export contain date-search-based views if needed X-Git-Tag: phpfspot-1.2~132 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=ab99bf1b3aa609c14a81ad768601605afff54db2 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 --- 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;