Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Redefinition of parameter $options Reply To: Redefinition of parameter $options

#237513
Anonymous
Inactive

Sure. It would be helpful if you had posted the code, but it’s possible to make an educated guess.

If you go to .../public/assets/plugins/de-footer-builder/generate-dfb/functions/import.php and look on line 268, I suspect you’ll see something like:

function name($options, $options) {

This used to be ok. If you called something like name(1, 2) then $options would simple be assigned the value 2. As of PHP7 you get this error instead.