1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 16:51:28 +00:00

block mysql versions where true is undefined in sanity_check

This commit is contained in:
Andrew Dolgov
2006-08-13 05:46:40 +01:00
parent 746a0d5eb3
commit aec3ce39de
3 changed files with 22 additions and 4 deletions

View File

@@ -1217,6 +1217,8 @@
function sanity_check($link) {
error_reporting(0);
$error_code = 0;
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$schema_version = db_fetch_result($result, 0, "schema_version");
@@ -1225,8 +1227,17 @@
$error_code = 5;
}
if (DB_TYPE == "mysql") {
$result = db_query($link, "SELECT true", false);
if (db_num_rows($result) != 1) {
$error_code = 10;
}
}
error_reporting (DEFAULT_ERROR_LEVEL);
if ($error_code != 0) {
print_error_xml(5);
print_error_xml($error_code);
return false;
} else {
return true;