Please, please, please consider making Zenphoto more Wordpress friendly.
It's not so hard to integrate Zenphoto into Wordpress (so that templates share the syntax Wordpress themes do), it really only involves:
1: editing zp-core/lib-gettext/gettext.inc and replacing
function _($msgid) {
return $msgid;
}
with
if (!function_exists('_')) {
function _($msgid) {
return $msgid;
}
}
2: turning off E_STRICT error reporting by removing instances of it from "zp-core/functions-basic.php".
It would be so much easier for me to upgrade Zenphoto.
Comments
But since Zenphoto does not actually use this shortened version (such shortcuts are really bad programming practice, by the way) we will remove it.
But I still appreciate it you'll tweak this. Thanks.
As for the error reporting feature -- could it be made into an option in the admin, so that I didn't have to hack functions-basic.php? You could have it default to what it does now. I know I'm asking a lot.