diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index ab5cb9e..5df3115 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -98,9 +98,11 @@ class PHPFSPOT { } } - if(isset($photo)) { - $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&width=". $this->cfg->photo_width); - } + + $details = $this->get_photo_details($photo); + + $this->tmpl->assign('image_name', $details['name']); + $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&width=". $this->cfg->photo_width); if($previous_img) { $this->tmpl->assign('previous_url', "javascript:showImage(". $previous_img .");"); @@ -263,7 +265,15 @@ class PHPFSPOT { $this->tmpl->assign('image_url', $image_url); $this->tmpl->show("bubble_details.tpl"); - } + } // showBubbleDetails() + + public function showCredits() + { + $this->tmpl->assign('version', $this->cfg->version); + $this->tmpl->assign('product', $this->cfg->product); + $this->tmpl->show("credits.tpl"); + + } // showCredits() } |