Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
3ed05836
Commit
3ed05836
authored
1 year ago
by
Randy Sommerfeld
Browse files
Options
Downloads
Patches
Plain Diff
Fix
#601
parent
b4639b0f
No related branches found
No related tags found
1 merge request
!463
MRC mods by Codefenix (2024-10-20)
Pipeline
#4669
passed
1 year ago
Stage: build
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/load/ircd/core.js
+2
-4
2 additions, 4 deletions
exec/load/ircd/core.js
with
2 additions
and
4 deletions
exec/load/ircd/core.js
+
2
−
4
View file @
3ed05836
...
...
@@ -1522,16 +1522,14 @@ function IRCClient_do_stats(statschar) {
}
function
IRCClient_do_users
()
{
var
i
,
u
;
var
usersshown
=
false
;
var
i
,
u
,
usersshown
;
this
.
numeric
(
392
,
'
:UserID Terminal Host
'
);
usersshown
=
0
;
for
(
i
in
system
.
node_list
)
{
if
(
system
.
node_list
[
i
].
status
==
NODE_INUSE
)
{
u
=
new
User
(
system
.
node_list
[
i
].
useron
);
this
.
numeric
(
393
,
format
(
'
:%-25s %-9s %-30s
'
,
u
.
alias
,
'
Node
'
+
node
,
u
.
host_name
));
this
.
numeric
(
393
,
format
(
'
:%-25s %-9s %-30s
'
,
u
.
alias
,
'
Node
'
+
i
,
u
.
host_name
));
usersshown
++
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Ghost User
@ghost
mentioned in issue
#601 (closed)
·
1 year ago
mentioned in issue
#601 (closed)
mentioned in issue #601
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment