mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-19 05:44:39 -04:00
Default or custom OPML (#2627)
* Default or custom OPML Fix https://github.com/FreshRSS/FreshRSS/issues/2075 Replaces https://github.com/FreshRSS/FreshRSS/pull/2515 https://github.com/FreshRSS/FreshRSS/issues/2514 Uses the local ./data/opml.xml if it exists, otherwise ./opml.default.xml * Better message * Move to controller
This commit is contained in:
committed by
GitHub
parent
67fc72fb61
commit
7819a43197
@@ -102,11 +102,6 @@ CREATE TABLE IF NOT EXISTS `entrytag` (
|
||||
CREATE INDEX IF NOT EXISTS entrytag_id_entry_index ON `entrytag` (`id_entry`);
|
||||
SQL;
|
||||
|
||||
$SQL_INSERT_FEED = <<<'SQL'
|
||||
INSERT OR IGNORE INTO `feed` (url, category, name, website, description, ttl)
|
||||
VALUES(:url, 1, :name, :website, :description, 86400);
|
||||
SQL;
|
||||
|
||||
$SQL_DROP_TABLES = <<<'SQL'
|
||||
DROP TABLE IF EXISTS `entrytag`;
|
||||
DROP TABLE IF EXISTS `tag`;
|
||||
|
||||
Reference in New Issue
Block a user