fwrite returns 0 when 0 bytes written, so use === FALSE test instead.
[squirrelmail.git] / themes / random.php
index a6e04442a07923202587ae852433ecf7136b94e3..b6af679bf9a66ff8e32a76fc5581b1fd6cdbb3cf 100755 (executable)
@@ -7,28 +7,31 @@
  *    Date:    December 24, 2001
  *    Comment: Guess what this does!
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Copyright (c) 2000-2003 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * $Id$
  */
 
 sq_mt_randomize();
+
+require_once(SM_PATH . 'functions/global.php');
    
 global $theme, $random_theme_good_themes;
    
-if (!session_is_registered('random_theme_good_theme')) {
+if (!sqsession_is_registered('random_theme_good_theme')) {
     $good_themes = array();
     foreach ($theme as $data) {
         if (substr($data['PATH'], -18) != '/themes/random.php') {
             $good_themes[] = $data['PATH'];
         }
     }
-    if (count($good_themes) == 0)
-    $good_themes[] = '../themes/default.php';
+    if (count($good_themes) == 0) {
+        $good_themes[] = '../themes/default.php';
+    }
     $which = mt_rand(0, count($good_themes));
     $random_theme_good_theme = $good_themes[$which];
-    session_register('random_theme_good_theme');
+    sqsession_register($random_theme_good_theme, 'random_theme_good_theme');
 }
    
 @include_once ($random_theme_good_theme);