Feng Forum

Support => Older versions => : Karl September 03, 2009, 04:01:41 AM

: 1.5.3: Fatal error in /public/tools/translate.php
: Karl September 03, 2009, 04:01:41 AM
Fatal error: Call to undefined function array_ver() in /.../application/controllers/ToolController.class.php on line 207
: Re: 1.5.3: Fatal error in /public/tools/translate.php
: werner.wuerfel September 03, 2009, 11:17:12 AM
Hi Karl,

use the ToolController.class.php from Version 1.5.2 it will work.

I Think the changes in the ToolController.class.php from Version 1.5.3 are wrong.
: Re: 1.5.3: Fatal error in /public/tools/translate.php
: ignacio September 03, 2009, 11:39:52 AM
You should change line 207 of file 'application/controllers/ToolController.class.php' from:

:
$download = array_ver($_GET, 'download');

to:
:
$download = array_var($_GET, 'download');

Thanks.
: Re: 1.5.3: Fatal error in /public/tools/translate.php
: werner.wuerfel September 03, 2009, 01:52:05 PM
Hi,

the change works.

Thanks...