From 328de26963e512cc34c999baf67f449020a62bfd Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Fri, 15 Aug 2014 10:48:55 +0200 Subject: [PATCH] backported various fixes from production installation --- web/Obj/brisk.phh | 4 ++-- web/brisk.css | 2 +- web/room.js | 2 +- web/usermgmt.php | 9 ++++++--- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 47b8f13..3d94f65 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -108,8 +108,8 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', 'en' => 'EN
The signalling message of the table
will be deactivated for %d second%s.

'), 'alarpass' => array( 'it' => '
La password digitata non è corretta.

', 'en' => '
The entered password is not correct.

'), - 'alarret' => array( 'it' => '"Alarm \\"%s\\" inviato a %s."', - 'en' => '"Alarm \\"%s\\" sent to %s."'), + 'alarret' => array( 'it' => 'Alarm \\"%s\\" inviato a %s.', + 'en' => 'Alarm \\"%s\\" sent to %s.'), 'authmust' => array( 'it' => 'Per autenticare qualcuno devi a tua volta essere autenticato e certificato.', 'en' => 'To authenticate someone you have to be authenticated and certified.'), // on your turn 'mesgmust' => array( 'it' => 'Per inviare un messaggio devi essere autenticato.', diff --git a/web/brisk.css b/web/brisk.css index 56bd604..0539984 100644 --- a/web/brisk.css +++ b/web/brisk.css @@ -257,7 +257,7 @@ span.au1 { font-style: italic; /* orange background-color: #ffd780; */ /* red background-color: #ffb0b0; */ - background-color: #81a8ff; + background-color: #a1c8ff; } span.au2 { diff --git a/web/room.js b/web/room.js index 59117c9..c25728b 100644 --- a/web/room.js +++ b/web/room.js @@ -106,7 +106,7 @@ function state_add(flags, comp) } if ((flags & 0xf0000) != 0) { - superst = flags & 0xf0000; + superst = flags & 0x20000; if (name != "") { supersfx = "_side"; } diff --git a/web/usermgmt.php b/web/usermgmt.php index ec9a83e..95a9c76 100644 --- a/web/usermgmt.php +++ b/web/usermgmt.php @@ -225,7 +225,8 @@ SELECT usr.*, guar.login AS guar_login FROM %susers AS usr JOIN %susers AS guar ON guar.code = usr.guar_code WHERE ( (usr.type & (CAST (X'%x' as integer))) = (CAST (X'%x' as integer)) ) - AND usr.disa_reas = %d;", + AND usr.disa_reas = %d + ORDER BY usr.lintm;", $G_dbpfx, $G_dbpfx, USER_FLAG_TY_DISABLE, USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_ADDED); @@ -342,7 +343,8 @@ SELECT usr.*, guar.login AS guar_login FROM %susers AS usr JOIN %susers AS guar ON guar.code = usr.guar_code WHERE ( (usr.type & (CAST (X'%x' as integer))) = (CAST (X'%x' as integer)) ) - AND usr.disa_reas = %d;", + AND usr.disa_reas = %d + ORDER BY usr.lintm;", $G_dbpfx, $G_dbpfx, USER_FLAG_TY_DISABLE, USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_MAILED); @@ -473,7 +475,8 @@ SELECT usr.*, guar.login AS guar_login FROM %susers AS usr JOIN %susers AS guar ON guar.code = usr.guar_code WHERE ( (usr.type & (CAST (X'%x' as integer))) = (CAST (X'%x' as integer)) ) - AND usr.disa_reas = %d;", + AND usr.disa_reas = %d + ORDER BY usr.lintm;", $G_dbpfx, $G_dbpfx, USER_FLAG_TY_ALL, USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_TOBECHK); -- 2.17.1