summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-18 10:54:11 +0100
committerAndrew Dolgov <[email protected]>2009-01-18 10:54:11 +0100
commit9c5e85fe9afe7176a54aee4466467c0ae5433f36 (patch)
tree0f575c73f0d9257f9f279fbfbe2e48cb8406f0d5 /modules
parentd8f9cd6d5b24227291825cdff8981cd15393ac56 (diff)
pref-labels, save: do not escape unnecessary newline
Diffstat (limited to 'modules')
-rw-r--r--modules/pref-labels.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pref-labels.php b/modules/pref-labels.php
index d9208c444..3690464e7 100644
--- a/modules/pref-labels.php
+++ b/modules/pref-labels.php
@@ -6,7 +6,7 @@
if ($subop == "save") {
$id = db_escape_string($_REQUEST["id"]);
- $caption = trim(db_escape_string($_REQUEST["value"]));
+ $caption = db_escape_string(trim($_REQUEST["value"]));
db_query($link, "BEGIN");
@@ -32,7 +32,7 @@
AND action_id = 7
AND owner_uid = " . $_SESSION["uid"]);
- print $caption;
+ print $_REQUEST["value"];
}
} else {
print $old_caption;