mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
15 lines
274 B
Perl
Executable File
15 lines
274 B
Perl
Executable File
# mod_browser.pl
|
|
# Defines editors for directives to set environment variables
|
|
|
|
sub mod_browser_directives
|
|
{
|
|
local($rv);
|
|
$rv = [ [ 'BrowserMatch BrowserMatchNoCase', 1, 11, 'global' ] ];
|
|
return &make_directives($rv, $_[0], "mod_browser");
|
|
}
|
|
|
|
require 'browsermatch.pl';
|
|
|
|
1;
|
|
|