fix adding feed w/o cat_id (closes #14)
This commit is contained in:
parent
b2804af7e0
commit
5edfe3038d
1 changed files with 1 additions and 1 deletions
|
@ -1643,7 +1643,7 @@
|
|||
$feed_link = db_escape_string(trim($_GET["link"]));
|
||||
$cat_id = db_escape_string($_GET["cid"]);
|
||||
|
||||
if ($cat_id == "0") {
|
||||
if ($cat_id == "0" || !$cat_id) {
|
||||
$cat_qpart = "NULL";
|
||||
} else {
|
||||
$cat_qpart = "'$cat_id'";
|
||||
|
|
Loading…
Reference in a new issue