From: Matteo Nastasi (mop) Date: Tue, 18 Jan 2011 17:48:00 +0000 (+0100) Subject: For super (supporter) users the timeout of the splash screen is set to 0 and the... X-Git-Tag: 3.0.1^0 X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=0164586f7b2ed030891349b00a7433ec22806a9f;p=brisk.git For super (supporter) users the timeout of the splash screen is set to 0 and the button message change. --- diff --git a/web/index_rd.php b/web/index_rd.php index 6683618..80c41d1 100644 --- a/web/index_rd.php +++ b/web/index_rd.php @@ -28,8 +28,10 @@ require_once("briskin5/Obj/briskin5.phh"); $mlang_indrd = array( - 'btn_backtotab' => array('it' => 'torna ai tavoli', - 'en' => 'back to tables') + 'btn_backtotab' => array('it' => ' torna ai tavoli ', + 'en' => ' back to tables '), + 'btn_btotabsup' => array('it' => ' grazie della donazione, torna ai tavoli ', + 'en' => ' thank you for donation, back to tables ') ); // Use of proxies isn't allowed. @@ -223,7 +225,12 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su if ($G_with_splash && ($$CO_splashdate < $curtime - $G_splash_interval || $$CO_splashdate > $curtime)) { - $ret .= show_notify_ex(str_replace("\n", " ", $G_splash_content[$G_lang]), $G_splash_timeout, $mlang_indrd['btn_backtotab'][$G_lang], $G_splash_w, $G_splash_h, true, $G_splash_timeout); + $is_super = $user->flags & USER_FLAG_TY_SUPER; + $ret .= show_notify_ex(str_replace("\n", " ", $G_splash_content[$G_lang]), + ($is_super ? 0 : $G_splash_timeout), + $mlang_indrd[($is_super ? 'btn_btotabsup' : 'btn_backtotab')][$G_lang], + $G_splash_w, $G_splash_h, true, + ($is_super ? 0 : $G_splash_timeout)); $ret .= sprintf('|createCookie("CO_splashdate%d", %d, 24*365, cookiepath);', $G_splash_idx, $curtime); } $ret .= $room->show_room($user->step, &$user);