diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-06-04 18:25:37 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-06-04 18:25:37 +0400 |
| commit | be9d5df19b073c29721a8d5a01fdf50f609c904c (patch) | |
| tree | bc695f1d3e75db67ec3eee6bf6e0504a010d4761 /install/index.php | |
| parent | 445d1c10440e54d4c35150aaebf58868c4aaf3c6 (diff) | |
hide warning when checking for tt-rss tables if tables are not present
Diffstat (limited to 'install/index.php')
| -rw-r--r-- | install/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/index.php b/install/index.php index ec064c0a7..83f3d3821 100644 --- a/install/index.php +++ b/install/index.php @@ -357,7 +357,7 @@ <p>Before you can start using tt-rss, database needs to be initialized. Click on the button below to do that now.</p> <?php - $result = db_query($link, "SELECT true FROM ttrss_feeds", $DB_TYPE, false); + $result = @db_query($link, "SELECT true FROM ttrss_feeds", $DB_TYPE, false); if ($result) { print_error("Existing tt-rss tables will be removed from the database. If you would like to keep your data, skip database initialization."); |