diff options
-rw-r--r-- | phpfspot.class.php | 4 | ||||
-rw-r--r-- | themes/default/templates/welcome.tpl | 4 |
2 files changed, 6 insertions, 2 deletions
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 @@ <tr> <td> <div id='single'> + <div style="float: left"> + <img src="phpfspot_img.php?idx=rand&width=150&1" /> + <img src="phpfspot_img.php?idx=rand&width=150&2" /> + </div> <table> <tr> <td> |