Logged In: NO

I found a bug, using PHP5 and APACHE 2, appears this error:

PHP Fatal error: Cannot access empty property in
\inc\db_mysql.php on line 103 at the file

or in other versions doesnt appear nothing and only works
the first page but nothiing more.

this issue was solved, changing:

$this->free_result($this->$query_id);

for

$this->free_result($this->query_id);

on the file \inc\db_mysql.php

Thanks all.

Bye