mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
16 lines
258 B
Perl
Executable File
16 lines
258 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# A caller for loading XHR related routines
|
|
use strict;
|
|
|
|
our ($root_directory);
|
|
|
|
BEGIN { push(@INC, "."); };
|
|
use WebminCore;
|
|
|
|
&init_config();
|
|
&ReadParse();
|
|
&webmin_user_is_admin() or &switch_to_remote_user();
|
|
|
|
do "./xhr-lib.pl";
|
|
xhr();
|