On Sat, 21 Apr 2007 18:04:20 +0100 (BST)
"Vic" <lug@???> wrote:
> Sorry for the OT post - but seeing as it's so busy on here
> anyway ... :-)
>
> I'm trying to put a PHP app on a server, and it's barfing. The line in
> question is :-
>
> $employees[0] = _('None');
In 'conf/config.php':
----------------------------------------------------
/*Dont modify this bit
function required if gettext is not installed */
if (!function_exists('_')){
function _($text){
return ($text);
}
}
----------------------------------------------------
I would probably comment out the 'if' for a quick fix.
Mat