Allow dot in username (#2062)

* Allow dot in username

https://github.com/FreshRSS/FreshRSS/issues/2061

* Missing quotes for special chars in PostgreSQL
This commit is contained in:
Alexandre Alapetite
2018-10-24 13:07:39 +02:00
committed by GitHub
parent 60f31a58a5
commit 6a686daafa
5 changed files with 16 additions and 16 deletions

View File

@@ -107,4 +107,4 @@ $SQL_INSERT_FEEDS = array(
VALUES ("https://github.com/FreshRSS/FreshRSS/releases.atom", 1, "FreshRSS releases", "https://github.com/FreshRSS/FreshRSS/", "FreshRSS releases @ GitHub", 86400);',
);
define('SQL_DROP_TABLES', 'DROP TABLE IF EXISTS `entrytmp`, `entry`, `feed`, `category`');
define('SQL_DROP_TABLES', 'DROP TABLE IF EXISTS `entrytag`, `tag`, `entrytmp`, `entry`, `feed`, `category`');