@ -428,6 +428,7 @@ function admin_page_queue(&$a) {
*@returnstring
*/
functionadmin_page_summary(&$a){
global$db;
// 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");
$showwarning=false;
@ -436,6 +437,11 @@ function admin_page_summary(&$a) {
$showwarning=true;
$warningtext[]=sprintf(t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />'),'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
}
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements