mirror of
https://github.com/webmin/webmin.git
synced 2026-02-10 01:02:19 +00:00
12 lines
179 B
Perl
12 lines
179 B
Perl
# Common functions for theme CGIs
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
BEGIN { push(@INC, ".."); };
|
|
use WebminCore;
|
|
&init_config();
|
|
|
|
1;
|