1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-20 21:31:44 +02:00

Use PHP 5

This commit is contained in:
Jakub Vrana
2013-08-08 17:16:04 -07:00
parent 961ec0b857
commit 85d212c226
5 changed files with 7 additions and 16 deletions

View File

@@ -202,7 +202,7 @@ if (!defined("DRIVER")) {
/** Free result set
*/
function __destruct() {
mysql_free_result($this->_result); //! not called in PHP 4 which is a problem with mysql.trace_mode
mysql_free_result($this->_result);
}
}