summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-06-04 18:25:37 +0400
committerAndrew Dolgov <[email protected]>2013-06-04 18:25:37 +0400
commitbe9d5df19b073c29721a8d5a01fdf50f609c904c (patch)
treebc695f1d3e75db67ec3eee6bf6e0504a010d4761 /install
parent445d1c10440e54d4c35150aaebf58868c4aaf3c6 (diff)
hide warning when checking for tt-rss tables if tables are not present
Diffstat (limited to 'install')
-rw-r--r--install/index.php2
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.");