X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex_rd.php;h=80c41d139948f53e14fee43f28542da93678b6bc;hb=0164586f7b2ed030891349b00a7433ec22806a9f;hp=668361877b23617ae10a0108208f6a1e93baf2de;hpb=0049487f38f9afb2a45fe81c783f187f45951682;p=brisk.git 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);