issue55, PHPFSPOT_IMG can now display a random selected photo
[phpfspot.git] / phpfspot_img.php
index 194b534ba63e61d9258ea0a1ce621d35673581f4..a96d5e6f41c1d4ed86dd46933c36bdb9faf441e2 100644 (file)
@@ -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;