24Feb03=======================================================================
1. add the 'run' command and the 'privilege' command to allow sysops to
create scripts for people.
+2. fix show/user so that it doesn't moan about uninitialised variables
23Feb03=======================================================================
1. Added show/wm7d command (a US only callbook server) [by K1XX].
2. Added a prototype show/db0sdx command (w.i.p).
my @val = sort $node->users;
foreach $call (@val) {
if ($i >= 5) {
- push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;
+ push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l;
@l = ();
$i = 0;
}
$i++;
}
push @l, "" while $i++ < 5;
- push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;
+ push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l;
}
return (1, @out);