mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 06:03:28 +00:00
HTML escape more stuff
This commit is contained in:
@@ -22,10 +22,12 @@ else {
|
||||
|
||||
if ($in{source} == 0) {
|
||||
# installing from local file (or maybe directory)
|
||||
if (!$in{'local'})
|
||||
{ &install_error($text{'install_elocal'}); }
|
||||
if (!-r $in{'local'})
|
||||
{ &install_error(&text('install_elocal2', $in{'local'})); }
|
||||
if (!$in{'local'}) {
|
||||
&install_error($text{'install_elocal'});
|
||||
}
|
||||
if (!-r $in{'local'}) {
|
||||
&install_error(&text('install_elocal2', &html_escape($in{'local'})));
|
||||
}
|
||||
$source = $in{'local'};
|
||||
$pfile = $in{'local'};
|
||||
$filename = $in{'local'};
|
||||
|
||||
Reference in New Issue
Block a user