Skip to content
Snippets Groups Projects
Commit be1d4fd1 authored by deuce's avatar deuce
Browse files

Don't show QNET accounts in the userlist by default (Diddle the show_qnet

variable to enable)
parent 95d7c86a
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@ http_reply.fast=true;
load("sbbsdefs.js");
load("../web/lib/template.ssjs");
var show_qnet=false;
var sub="";
if(system.lastuser==undefined) /* v3.10 */
......@@ -23,6 +25,8 @@ for(i=1;i<=lastuser;i++) {
u.number=i;
if(u.settings&USER_DELETED)
continue;
if(!show_qnet && (u.security.restrictions & UFLAG_Q))
continue;
usr.alias=u.alias.toString();
usr.location=u.location.toString();
usr.connection=u.connection.toString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment