Viewing 2 replies - 1 through 2 (of 2 total)
  • The message is shown, because $available_buttons is a static field and the code tries to read the field using ,,->” (I’ve just translated the message ;)).

    Just change (in flare.php:921)

    $available_buttons = $this->Button->available_buttons;

    into

    $Button = $this->Button;
    $available_buttons = $Button::$available_buttons;

    Thread Starter rimas166

    (@rimas166)

    this really helped… thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘error message at frontpage’ is closed to new replies.