mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
Fix not to add extra line
This commit is contained in:
@@ -16,7 +16,7 @@ print $text{'refreshmods_installed'},"<br>\n";
|
||||
$installed = &webmin::build_installed_modules(1);
|
||||
@not = grep { $installed->{$_} eq '0' } (keys %$installed);
|
||||
@got = grep { $installed->{$_} ne '0' } (keys %$installed);
|
||||
print &text('refeshmods_counts', scalar(@not), scalar(@got)),"<p>\n";
|
||||
print &text('refeshmods_counts', scalar(@not), scalar(@got)),"\n";
|
||||
|
||||
# Refresh left frame, if possible
|
||||
if (defined(&theme_post_change_modules)) {
|
||||
|
||||
@@ -12,7 +12,7 @@ print $text{'refreshmods_installed'},"<br>\n";
|
||||
($installed, $changed) = &build_installed_modules(1);
|
||||
@not = grep { $installed->{$_} eq '0' } (keys %$installed);
|
||||
@got = grep { $installed->{$_} ne '0' } (keys %$installed);
|
||||
print &text('refeshmods_counts', scalar(@not), scalar(@got)),"<p>\n";
|
||||
print &text('refeshmods_counts', scalar(@not), scalar(@got)),"\n";
|
||||
|
||||
# Refresh left frame, if possible
|
||||
if (@$changed && defined(&theme_post_change_modules)) {
|
||||
|
||||
Reference in New Issue
Block a user