inoERP icon indicating copy to clipboard operation
inoERP copied to clipboard

gettext.inc on line 501

Open jimyengr opened this issue 7 years ago • 1 comments

gettext.inc on line 501

Error on Install (Live)

jimyengr avatar Apr 11 '17 15:04 jimyengr

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);
        }
    }

sandeepbisht avatar Apr 25 '18 08:04 sandeepbisht