summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-22 14:06:15 +0100
committerAndrew Dolgov <[email protected]>2005-12-22 14:06:15 +0100
commit9cbca41fbdcacbdf6fed8152c5f531e61f167efd (patch)
treed8deab96d58204c8fafe8ad10a7d21dcfb64c755 /functions.php
parent5edfe3038d6f2827c40b542015e3aa3f807ee8a5 (diff)
fix bugs introduced by two previous patches
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/functions.php b/functions.php
index d34e133ae..97be0da2a 100644
--- a/functions.php
+++ b/functions.php
@@ -861,7 +861,7 @@
}
function sanity_check($link) {
-
+
$error_code = 0;
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$schema_version = db_fetch_result($result, 0, "schema_version");
@@ -870,13 +870,12 @@
$error_code = 5;
}
- print "<error error-code='$error_code'/>";
-
if ($error_code != 0) {
+ print "<error error-code='$error_code'/>";
return false;
} else {
return true;
- }
+ }
}
?>