From: tokul Date: Thu, 15 Apr 2004 19:33:36 +0000 (+0000) Subject: rg=off fix. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a4edbd9f5a12179aacea4b78d4ef08df4159f102;p=squirrelmail.git rg=off fix. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7127 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/themes/random.php b/themes/random.php index 20f893a1..bd2a3729 100755 --- a/themes/random.php +++ b/themes/random.php @@ -19,7 +19,7 @@ sq_mt_randomize(); require_once(SM_PATH . 'functions/global.php'); -global $theme, $random_theme_good_themes; +global $theme; if (!sqsession_is_registered('random_theme_good_theme')) { $good_themes = array(); @@ -34,6 +34,9 @@ if (!sqsession_is_registered('random_theme_good_theme')) { $which = mt_rand(0, count($good_themes)); $random_theme_good_theme = $good_themes[$which]; sqsession_register($random_theme_good_theme, 'random_theme_good_theme'); +} else { + // get random theme stored in session + sqgetGlobalVar('random_theme_good_theme',$random_theme_good_theme); } @include_once ($random_theme_good_theme);