supp_comp_get_array function fixed
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 7 Oct 2016 06:23:52 +0000 (08:23 +0200)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Fri, 7 Oct 2016 06:23:52 +0000 (08:23 +0200)
web/Obj/brisk.phh
web/Obj/dbase_base.phh

index 9368916..29ec0e8 100644 (file)
@@ -2097,7 +2097,7 @@ class Brisk
 
         /* MLANG: "<b>Non puoi cambiare nick a un tavolo per soli autenticati.</b>", "Il nickname <b>\'%s\'</b> &egrave; gi&agrave; registrato, <b>se il suo proprietario si autentificher&agrave; verrai rinominato d\'ufficio come ghost<i>N</i>.</b>" */
         if ($user->is_auth()) {
-          if (strcasecmp($user->name,$name_new) != 0) {
+          if (strcasecmp($user->name, $name_new) != 0) {
              if (( ($user->flags & USER_FLAG_MAP_AUTH) != USER_FLAG_ISOLAUTH) &&
                 ($user->subst == 'standup' ||
                  ($user->subst != 'standup' && $this->table[$user->table]->auth_type == TABLE_AUTH_TY_PUBL)
index d2cebbc..25c36d5 100644 (file)
@@ -110,10 +110,9 @@ class LoginDBItem {
             $group_cur = $group_id[$i];
             $ret_arr[$group_cur] = array();
             for ($e = 0 ; $e < 3 ; $e++) {
-                $ret_arr[$group_cur][$comp_id[$e]] = base_convert(substr($supp_comp, $i*3 + $e, 2), 16, 10);
+                $ret_arr[$group_cur][$comp_id[$e]] = base_convert(substr($supp_comp, $i*6 + $e*2, 2), 16, 10);
             }
         }
-
         return ($ret_arr);
     }