summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_igmpproxy_edit.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-01-06 13:46:13 -0500
committerjim-p <jimp@pfsense.org>2011-01-06 13:52:52 -0500
commitd865241eddda66e39cea4e1408171f83d593b3d2 (patch)
tree3bf3ecfc5b80e7f65aa130603110fe5dac45ecc5 /usr/local/www/services_igmpproxy_edit.php
parent19e76a0bdb03bc3e6b6453289844e14e9aa70f5e (diff)
downloadpfsense-d865241eddda66e39cea4e1408171f83d593b3d2.zip
pfsense-d865241eddda66e39cea4e1408171f83d593b3d2.tar.gz
Don't run mb_convert_encoding on descr field, it's cdata protected in the config now and this just causes some characters to be lost on input. Ticket #1168
Diffstat (limited to 'usr/local/www/services_igmpproxy_edit.php')
-rwxr-xr-xusr/local/www/services_igmpproxy_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/services_igmpproxy_edit.php b/usr/local/www/services_igmpproxy_edit.php
index 63cb10e..8d02173 100755
--- a/usr/local/www/services_igmpproxy_edit.php
+++ b/usr/local/www/services_igmpproxy_edit.php
@@ -98,7 +98,7 @@ if ($_POST) {
if (!$input_errors) {
$igmpentry['address'] = $address;
- $igmpentry['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto");
+ $igmpentry['descr'] = $_POST['descr'];
if (isset($id) && $a_igmpproxy[$id])
$a_igmpproxy[$id] = $igmpentry;
@@ -114,7 +114,7 @@ if ($_POST) {
//we received input errors, copy data to prevent retype
else
{
- $pconfig['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto");
+ $pconfig['descr'] = $_POST['descr'];
$pconfig['address'] = $address;
$pconfig['type'] = $_POST['type'];
}
OpenPOWER on IntegriCloud