Re: Ako gallery problem !! Add "old" function in \mambo\include\database.php
--------------------------------------------------------------------------------
USE AT YOUR OWN RISK:
Add the following lines below line 86 of the file /mamaboinstallpath/includes/database.php
RENAME THE FILE BEFORE EDITING!!!!
Did I mention: your own risk and copy the file?
It work fine for me. You will have the same trouble with the zoom gallery.
/**
* Execute a database query and returns the result
* @param string The SQL query
* @return resource Database resource identifier. Refer to the PHP manual for more information.
* @deprecated This function is included for tempoary backward compatibility
*/
function openConnectionWithReturn($query){
$result=mysql_query($query) or die("Query failed with error: ".mysql_error());
return $result;
}
/**
* Execute a database query
* @param string The SQL query
* @deprecated This function is included for temporary backward compatibility
*/
function openConnectionNoReturn($query){
mysql_query($query) or die("Query failed with error: ".mysql_error());
} |