pref-labels, save: do not escape unnecessary newline

master
Andrew Dolgov 16 years ago
parent d8f9cd6d5b
commit 9c5e85fe9a

@ -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;

@ -151,7 +151,8 @@ function labellist_callback() {
var id = elems[i].id.replace("LILT-", "");
new Ajax.InPlaceEditor(elems[i],
'backend.php?op=pref-labels&subop=save&id=' + id);
'backend.php?op=pref-labels&subop=save&id=' + id,
{cols: 20, rows: 1});
}
}
}

Loading…
Cancel
Save