fix wrong operator precedence error
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 25 Oct 2015 17:50:20 +0000 (18:50 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 25 Oct 2015 17:50:20 +0000 (18:50 +0100)
web/commons.js

index c317957..3789e9c 100644 (file)
@@ -1045,7 +1045,7 @@ function user_decorator(user, is_real)
 
     if (flags != 0)
         name = "<span class='" + cl + "'><span class='" +
-        (is_real && (flags & 0xfffffe && (flags & 0x01 == 0)) ? "id_usr" : "") +
+        (is_real && (flags & 0xfffffe && ((flags & 0x01) == 0)) ? "id_usr" : "") +
         "'>"+user[1]+"</span></span>";
     else
         name = user[1];