X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=themes%2Frandom.php;h=b6af679bf9a66ff8e32a76fc5581b1fd6cdbb3cf;hb=cc47a3f0db17d09fe60f69f171f3026935043226;hp=a6e04442a07923202587ae852433ecf7136b94e3;hpb=d4f79d9669da458dedf7eb355e2e66ccdfb38ade;p=squirrelmail.git diff --git a/themes/random.php b/themes/random.php index a6e04442..b6af679b 100755 --- a/themes/random.php +++ b/themes/random.php @@ -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);