After upgrade from 1.2.2 to 1.2.3 my gallery now is full of weird characters!!! As a matter of fact some data in database is not being translated when output on web page. All titles of albums and sub-albums are now like:
a:2:{s:5:"en_US";s:18:"Travelling At Home";s:5:"pt_PT";s:22:"Viagens Na Minha Terra";}
when I should only have either [b]Travelling At Home[/b] or [b]Viagens Na Minha Terra[/b] depending on selected language. I'd appreciate some help...
Thanks Stephen, it worked!
Now, a new error comes up by clicking the SEARCH key up in the search form:
Fatal error: Call to a member function getFolder() on a non-object in /my/server/path/photo/zp-core/template-functions.php on line 3713
line 3713 is:
echo $prev."getFolder())."&lang=".$lang."\" rel=\"nofollow\">".$linktext."$icon".$next;
but if I make it
echo $prev."".$linktext."$icon".$next;
the error disappears!! Very messy this upgrade to 1.2.3 :-(((
Awaiting your wise comments...
It was happening on StopDesign but after I replaced
albumname=".urlencode($_zp_current_album->getFolder())."
by
albumname=".urlencode(getAlbumTitle())."
is no longer happening. Of course this was detected in the [i]night build[/i] I used to overcome my initial problem.