inoerp/inoERP

gettext.inc on line 501

jimyengr opened this issue · 1 comments

gettext.inc on line 501

Error on Install (Live)

Change that function declaration inside if condition.(If not declared then declare it)

Ex In my case error is
"Fatal error: Cannot redeclare __()"

After following change everything working fine for me.

    if(!function_exists("__"))
    {
        function __($msgid) {
            return ___($msgid);
        }
    }