version 1.265, 2002/08/09 18:12:19
|
version 1.267, 2002/08/13 14:37:52
|
Line 820 sub flushcourselogs {
|
Line 820 sub flushcourselogs {
|
my $entry=$_; |
my $entry=$_; |
$entry=~/\_\_\_(\w+)\/(\w+)\/(.*)\_\_\_(\w+)$/; |
$entry=~/\_\_\_(\w+)\/(\w+)\/(.*)\_\_\_(\w+)$/; |
my %temphash=($entry => $accesshash{$entry}); |
my %temphash=($entry => $accesshash{$entry}); |
if (&Apache::lonnet::put('resevaldata',\%temphash,$1,$2) eq 'ok') { |
if (&Apache::lonnet::put('nohist_resevaldata',\%temphash,$1,$2) eq 'ok') { |
delete $accesshash{$entry}; |
delete $accesshash{$entry}; |
} |
} |
} |
} |
Line 1114 sub str2hashref {
|
Line 1114 sub str2hashref {
|
} |
} |
} else { |
} else { |
$string =~ s/^(.*?)=//; |
$string =~ s/^(.*?)=//; |
$key=$1 |
$key=&unescape($1); |
} |
} |
$string =~ s/^=//; |
$string =~ s/^=//; |
|
|