From: Andreas Unterkircher Date: Sun, 22 Jul 2007 16:58:59 +0000 (+0000) Subject: issue65, fixed incorrect array_rand handling X-Git-Tag: phpfspot-1.2~89 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=223a626abc5757fbce0b6ce4e0a4a4a1cf4980e4;ds=sidebyside issue65, fixed incorrect array_rand handling git-svn-id: file:///var/lib/svn/phpfspot/trunk@246 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- diff --git a/phpfspot.class.php b/phpfspot.class.php index d2bb895..a7290b6 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1743,10 +1743,10 @@ class PHPFSPOT { "); while($row = $this->db->db_fetch_object($result)) { - array_push($all, $row[0]); + array_push($all, $row['id']); } - return array_rand($all); + return $all[array_rand($all)]; } // get_random_photo() diff --git a/themes/default/templates/welcome.tpl b/themes/default/templates/welcome.tpl index 9845755..529cbb6 100644 --- a/themes/default/templates/welcome.tpl +++ b/themes/default/templates/welcome.tpl @@ -8,6 +8,10 @@
+
+ + +