From: Tobias Diekershoff Date: Sun, 20 Nov 2016 09:44:54 +0000 (+0100) Subject: mysql keywords X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=38f9fab6c47882bcb0c1ff4a1f75fd393c6ad352;p=friendica.git mysql keywords --- diff --git a/mod/admin.php b/mod/admin.php index ecb394b0ef..c5ad7de3b6 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -429,7 +429,7 @@ function admin_page_queue(&$a) { */ function admin_page_summary(&$a) { // are there MyISAM tables in the DB? If so, trigger a warning message - $r = q("select `engine` from `information_schema`.`tables` where `engine`='myisam' limit 1"); + $r = q("SELECT `engine` FROM `information_schema`.`tables` WHERE `engine`='myisam' LIMIT 1"); $showwarning = false; $warningtext = ""; if (dbm::is_result($r)) {