mirror of
https://github.com/webmin/webmin.git
synced 2026-03-20 08:40:24 +00:00
Fix to support SVG icons for servers
This commit is contained in:
@@ -108,7 +108,9 @@ elsif (@servers) {
|
||||
@befores = map { &ui_checkbox("d", $_->{'id'}) } @servers;
|
||||
}
|
||||
my @titles = map { &make_iconname($_) } @servers;
|
||||
my @icons = map { "images/$_->{'type'}.gif" } @servers;
|
||||
my @icons = map { -r "images/$_->{'type'}.svg" ?
|
||||
"images/$_->{'type'}.svg" :
|
||||
"images/$_->{'type'}.gif" } @servers;
|
||||
my @links = map { !$access{'links'} ? undef :
|
||||
$_->{'user'} || $_->{'autouser'} ?
|
||||
"link.cgi/$_->{'id'}/" : &make_url($_) } @servers;
|
||||
|
||||
Reference in New Issue
Block a user