summaryrefslogtreecommitdiff
path: root/include/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 18:34:18 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 18:34:18 +0400
commita42c55f02b7e313ab61bf826794d0888f2dceae1 (patch)
tree7946572f0e45015a0b54830bd1296be548584ed8 /include/sanity_check.php
parent72ff0137298f60970c664f0be24327b120bf4ac7 (diff)
fix blank character after opening bracket in function calls
Diffstat (limited to 'include/sanity_check.php')
-rw-r--r--include/sanity_check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sanity_check.php b/include/sanity_check.php
index 0477efd50..a5c682be8 100644
--- a/include/sanity_check.php
+++ b/include/sanity_check.php
@@ -88,7 +88,7 @@
}
if (SINGLE_USER_MODE) {
- $result = db_query( "SELECT id FROM ttrss_users WHERE id = 1");
+ $result = db_query("SELECT id FROM ttrss_users WHERE id = 1");
if (db_num_rows($result) != 1) {
array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");