mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 04:55:55 +00:00
fix sql syntax error when exporting opml w/o cats
This commit is contained in:
2
opml.php
2
opml.php
@@ -49,7 +49,7 @@
|
|||||||
ORDER BY cat_title,title");
|
ORDER BY cat_title,title");
|
||||||
} else {
|
} else {
|
||||||
$result = db_query($link, "SELECT * FROM ttrss_feeds
|
$result = db_query($link, "SELECT * FROM ttrss_feeds
|
||||||
ORDER BY title WHERE owner_uid = '$owner_uid'");
|
WHERE owner_uid = '$owner_uid' ORDER BY title");
|
||||||
}
|
}
|
||||||
|
|
||||||
$old_cat_title = "";
|
$old_cat_title = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user