• In the latest PHP versions there is a deprecation warnings:

    Creation of dynamic property CSF_Field_image_select::$field is deprecated

    So the file admin/csf/classes/field.class.php should be updated like that:

    public mixed $field;
    public mixed $value;
    public mixed $unique;
    public mixed $where;
    public mixed $parent;

    public function __construct( $field = array(), $value = ”, $unique = ”, $where = ”, $parent = ” ) {
    $this->field = $field;
    $this->value = $value;
    $this->unique = $unique;
    $this->where = $where;
    $this->parent = $parent;
    }

    And then in admin/csf/fields/typography/typography.php we need to add mixed to the $value:

    public mixed $value = array();

    Hope this helps and be included in the future releases.

    • This topic was modified 1 year, 11 months ago by Angel Petkov.
Viewing 1 replies (of 1 total)
  • Plugin Author Foysal Imran

    (@faysal61)

    Hello @quiztion

    Thank yo so much for taking time for checking our plugin “Chat support for Viber”. I really appriciate it taht you identified that issue and submitted is for our notice. We just released a new version by fixing that issue. Please have a look and enjoy the new update.


    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘Support for latest PHP versions’ is closed to new replies.