| Server IP : 104.21.25.180 / Your IP : 104.23.197.122 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/webmin/ |
Upload File : |
#!/usr/bin/perl
# save_categories.cgi
require './webmin-lib.pl';
&ReadParse();
&error_setup($text{'categories_err'});
# Save built-in categories
foreach $t (keys %text) {
$t =~ s/^category_// || next;
$field = $t || "other";
if (!$in{$field."_def"}) {
$in{$field} || &error(&text('categories_edesc', $t || 'other'));
$catnames{$t} = &filter_javascript($in{$field});
$catnames{'other'} = &filter_javascript($in{$field}) if ($t eq "");
}
}
# Save custom categories
for($i=0; defined($in{"cat_$i"}); $i++) {
if ($in{"cat_$i"} && $in{"desc_$i"}) {
$realcat{$in{"cat_$i"}} &&
&error(&text('categories_ecat', $in{"cat_$i"}));
$catnames{$in{"cat_$i"}} = $in{"desc_$i"};
}
}
# Write out the file
$file = "$config_directory/webmin.catnames";
$file .= ".".$in{'lang'} if ($in{'lang'});
&lock_file($file);
&write_file($file, \%catnames);
&unlock_file($file);
&webmin_log("categories", undef, $in{'lang'}, \%in);
&flush_webmin_caches();
&redirect("index.cgi?refresh=1");