Author Topic: 1.5.3: Fatal error in /public/tools/translate.php  (Read 2620 times)

Karl

  • Sr. Member
  • ****
  • Posts: 339
    • ICQ Messenger - 464979879
    • View Profile
1.5.3: Fatal error in /public/tools/translate.php
« on: September 03, 2009, 04:01:41 am »
Fatal error: Call to undefined function array_ver() in /.../application/controllers/ToolController.class.php on line 207

werner.wuerfel

  • Sr. Member
  • ****
  • Posts: 319
    • View Profile
Re: 1.5.3: Fatal error in /public/tools/translate.php
« Reply #1 on: 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.

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: 1.5.3: Fatal error in /public/tools/translate.php
« Reply #2 on: September 03, 2009, 11:39:52 am »
You should change line 207 of file 'application/controllers/ToolController.class.php' from:

Code: [Select]
$download = array_ver($_GET, 'download');

to:
Code: [Select]
$download = array_var($_GET, 'download');

Thanks.

werner.wuerfel

  • Sr. Member
  • ****
  • Posts: 319
    • View Profile
Re: 1.5.3: Fatal error in /public/tools/translate.php
« Reply #3 on: September 03, 2009, 01:52:05 pm »
Hi,

the change works.

Thanks...