HEX
Server: Apache
System: Linux srv1.prosuiteplus.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: prosuiteplus (1001)
PHP: 8.3.20
Disabled: NONE
Upload Files
File: //proc/597785/root/usr/share/webmin/webmin/refresh_modules.cgi
#!/usr/bin/perl
# Refresh the list of visible modules

require './webmin-lib.pl';
&ReadParse();

&ui_print_unbuffered_header(undef, $text{'refreshmods_title'}, "", undef, 0, 1);

# Re-run install checks
&flush_webmin_caches();
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)),"\n";

# Refresh left frame, if possible
if (@$changed && defined(&theme_post_change_modules)) {
	&theme_post_change_modules();
	}

&ui_print_footer();