remove unneeded escaping in label/add
This commit is contained in:
parent
b6b535ca74
commit
4401bf04c3
|
@ -1373,7 +1373,8 @@
|
||||||
|
|
||||||
if (!WEB_DEMO_MODE) {
|
if (!WEB_DEMO_MODE) {
|
||||||
|
|
||||||
$exp = db_escape_string(trim($_GET["exp"]));
|
// no escaping is done here on purpose
|
||||||
|
$exp = trim($_GET["exp"]);
|
||||||
|
|
||||||
$result = db_query($link,
|
$result = db_query($link,
|
||||||
"INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
|
"INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
|
||||||
|
|
Loading…
Reference in New Issue