+28Feb03=======================================================================
+1. Charlie K1XX fixed the sh/iso, sh/reg and sh/node commands
25Feb03=======================================================================
1. backported switch processing for PC sentences
24Feb03=======================================================================
use DB_File;
my ($action, $count, $key, $data) = (0,0,0,0);
-for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
- if ($data =~ m{isolate\s*=>}) {
+for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
+ if ($data =~ m{isolate}) {
my $u = DXUser->get_current($key);
if ($u && $u->isolate) {
push @out, $key;
if ($line) {
$line =~ s/[^\w\-\/]+//g;
- $line = "^\U\Q$line";
+ $line = "\U\Q$line";
}
return (1, $self->msg('lockoutuse')) unless $line;
my ($action, $count, $key, $data) = (0,0,0,0);
for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
- if ($data =~ m{lockout =>}) {
+ if ($data =~ m{lockout}) {
if ($line eq 'ALL' || $key =~ /$line/) {
my $ur = DXUser->get_current($key);
if ($ur && $ur->lockout) {
my ($action, $count, $key, $data) = (0,0,0,0);
for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
- if ($data =~ m{registered =>}) {
+ if ($data =~ m{registered}) {
if (!$line || ($line && $key =~ /$line/)) {
my $u = DXUser->get_current($key);
if ($u && $u->registered) {