Summary:
If album name is numeric like year 2012 Album fails to load it
Detailed Description:
If you call {Album albums='2012') album name is considered as id (numeric) even
if it's album name.
What we did to get around it was to add {Album albums='2012' search_by_name=1}
and alter action.default.php on line 56 from
if( is_numeric($tmp[$i]) )
to
if(is_numeric($tmp[$i]) && !$params['search_by_name'])
and it started accepting also numeric names. Not tested thoroughly :)
Thanks for working with this module!