summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-01 09:13:56 +0100
committerAndrew Dolgov <[email protected]>2006-08-01 09:13:56 +0100
commit5f212f408d32e1781af505970a1d16f9ec41c546 (patch)
treeb5fe1bf9c23669f56246da67b7f60099c7906d10 /backend.php
parent9b27e823bcf7d7079ac1c16c65d7326b25828927 (diff)
unescape label info in editor
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 18e768366..93798a3aa 100644
--- a/backend.php
+++ b/backend.php
@@ -2390,8 +2390,9 @@
print "<tr class=\"$class\" $this_row_id>";
- $line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
- $line["description"] = htmlspecialchars($line["description"]);
+ $line["sql_exp"] = htmlspecialchars(db_unescape_string($line["sql_exp"]));
+ $line["description"] = htmlspecialchars(
+ db_unescape_string($line["description"]));
if (!$edit_label_id || $subop != "edit") {