16
Jun
Fix Bug Phpmyadmin [sql.lib.php] + Php7.2 + Ubuntu 16.x 18.x
Comments
Warning in ./libraries/sql.lib.php#601
count(): Parameter must be an array or an object that implements Countable
|| (count($analyzed_sql_results[‘select_expr’] == 1)
that’s missing close bracket ‘)’ before operation with 1. So changed it to
|| (count($analyzed_sql_results[‘select_expr’]) == 1
remove last close bracket ‘)’ at this line like this,