From 758887b79c875b31b86d427e27f515e2c3d2a257 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 21 Jul 2007 14:43:41 +0000 Subject: issue55, PHPFSPOT_IMG can now display a random selected photo git-svn-id: file:///var/lib/svn/phpfspot/trunk@232 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot_img.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'phpfspot_img.php') diff --git a/phpfspot_img.php b/phpfspot_img.php index 194b534..a96d5e6 100644 --- a/phpfspot_img.php +++ b/phpfspot_img.php @@ -56,6 +56,9 @@ class PHPFSPOT_IMG { */ public function show($idx, $width = 0) { + if($idx == 'rand') + $idx = $this->parent->get_random_photo(); + $details = $this->parent->get_photo_details($idx); if(!$details) { @@ -112,7 +115,7 @@ class PHPFSPOT_IMG { } -if(isset($_GET['idx']) && is_numeric($_GET['idx'])) { +if(isset($_GET['idx']) && (is_numeric($_GET['idx']) || $_GET['idx'] == 'rand')) { $img = new PHPFSPOT_IMG; -- cgit v1.2.3-18-g5258