There's a small bug in the gallery2 bridge searchbot for Joomla. Notably, the function utility::g2DateToMambo() has changed to utility::formatdate() as noted in this diff.
To fix we simple need to update the function being called. At the time of writing this is line 63 in mambots/search/gallery2.searchbot.php.
Edit like so:
Old:
$info->created = utility::g2DateToMambo($time);
New:
$info->created = utility::formatdate($time);
Note: This has been fixed in the latest version available here.

Comments (3)
