hai ragione...
comunque a quella riga c'è soltanto questo:
Codice PHP:
mysql_free_result($query_id); 
che è all'unterno di questo pezzo di codice:
Codice PHP:
function sql_freeresult($query_id 0)
    {
        if( !
$query_id )
        {
            
$query_id $this->query_result;
        }

        if ( 
$query_id )
        {
            unset(
$this->row[$query_id]);
            unset(
$this->rowset[$query_id]);

            
mysql_free_result($query_id);

            return 
true;
        }
        else
        {
            return 
false;
        }
    } 
Sai dirmi per caso cosa non va? Mi sembra strano, dato che quel file non l'ho proprio toccato...
Grazie mille!