mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
21 lines
369 B
Perl
21 lines
369 B
Perl
do '../web-lib-funcs.pl';
|
|
|
|
sub show_userIgnoreList
|
|
{
|
|
my($ig_usr) = shift(@_) || '';
|
|
my($preta) = '<TEXTAREA NAME="ignore_users" COLS="35" ROWS="4">';
|
|
my($postta) = '</TEXTAREA>';
|
|
|
|
return
|
|
$preta .
|
|
$ig_usr .
|
|
$postta .
|
|
' ' .
|
|
&user_chooser_button("ignore_users", 1);
|
|
}
|
|
|
|
sub parse_userIgnoreList
|
|
{
|
|
return $in{'ignore_users'};
|
|
}
|