[solved/repair] Recoverable error ....
	
	
		News from german forum:
	Code:
	
Recoverable error: Object of class DB_Mysql_Result could not be converted to string in /*****/system/modules/gallery/Gallery.php on line 204
 Problem is a wrong double $
Change Gallery.php, Line 204
	Code:
	
$return[] = strlen($objArchives->alias) ? $objArchives->alias : 'gallery' . $$objArchives->id;
 in
	Code:
	
$return[] = strlen($objArchives->alias) ? $objArchives->alias : 'gallery' . $objArchives->id;
 
	 
	
	
	
		Re: Recoverable error ....
	
	
		Thanks Bug
I've corrected this. Funny it never appeared in the testing phase... and I generated feeds all the time to test it... huh? maybe a typo just before release.