Slideshow - Fatal Error

Permalink
I'm new to Concrete 5, and just installed v5.5.2, I'm trying to add a Slideshow Block, and got the following error messge:

Fatal error: func_get_args(): Can't be used as a function parameter in /home/xs_samples/sample001.xshosting.net/concrete/libraries/item_list.php on line 515

does anyone know what this means and how to fix this problem?

thanks.

 
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
Go to concrete/libraries/item_list.php and on line 515
it will look like this
public function sortByMultiple() {
      $this->sortByString = implode(', ', func_get_args());
   }
}

change it to look like this:
public function sortByMultiple() {
      $args = func_get_args();
      $this->sortByString = implode(', ', $args);
   }
}
MHo replied on at Permalink Reply
Thanks, that fixed it.