diff options
author | jim-p <jimp@pfsense.org> | 2013-02-07 09:44:13 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-02-07 09:44:13 -0500 |
commit | 133bda763e45a77012be097d84441c1e047fa15b (patch) | |
tree | f4929ce2cae9671da78494b11c4deff413db247b /usr | |
parent | 7cba1f5766c630df0d362ae626358fcb00ee4da9 (diff) | |
download | pfsense-133bda763e45a77012be097d84441c1e047fa15b.zip pfsense-133bda763e45a77012be097d84441c1e047fa15b.tar.gz |
This is quoted that way because it's passed in javascript. If another better way to quote it works, feel free to change it back, but test the fix first and make sure aliases still display in the firewall rule list.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/guiconfig.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc index cffbeb2..70cf471 100755 --- a/usr/local/www/guiconfig.inc +++ b/usr/local/www/guiconfig.inc @@ -1083,7 +1083,7 @@ function rule_popup($src,$srcport,$dst,$dstport){ if ($config['aliases']['alias'] <> "" and is_array($config['aliases']['alias'])) { $descriptions = array (); foreach ($config['aliases']['alias'] as $alias_id=>$alias_name){ - $loading_image="<a><img src=\"/themes/{$g['theme']}/images/misc/loader.gif\" alt=\"loader\" /> " .gettext("loading...")."</a>"; + $loading_image="<a><img src=\'/themes/{$g['theme']}/images/misc/loader.gif\' alt=\'loader\' /> " .gettext("loading...")."</a>"; switch ($alias_name['type']){ case "port": $width="250"; |