summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index 2ced8bb9..af2449d1 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -2210,7 +2210,7 @@
$frmTrig->AddVar("triggerid",$_REQUEST["triggerid"]);
$trigger=get_trigger_by_triggerid($_REQUEST["triggerid"]);
- $frmTrig->SetTitle(S_TRIGGER." \"".htmlspecialchars(stripslashes($trigger["description"]))."\"");
+ $frmTrig->SetTitle(S_TRIGGER." \"".htmlspecialchars($trigger["description"])."\"");
$limited = $trigger['templateid'] ? 'yes' : null;
}
@@ -2224,7 +2224,7 @@
if((isset($_REQUEST["triggerid"]) && !isset($_REQUEST["form_refresh"])) || isset($limited))
{
- $description = stripslashes($trigger["description"]);
+ $description = $trigger["description"];
$expression = explode_exp($trigger["expression"],0);
if(!isset($limited) || !isset($_REQUEST["form_refresh"]))