From f1fc0f174cd2116a1d874c86af31410eaf6a2904 Mon Sep 17 00:00:00 2001 From: Philip John Date: Tue, 31 Oct 2023 12:20:47 +0000 Subject: [PATCH] PHP 8.2: Fix for deprecated setting of dynamic property --- library.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library.php b/library.php index 9674df6..3c0b5f7 100644 --- a/library.php +++ b/library.php @@ -154,6 +154,7 @@ function get() { class CheezCapDropdownOption extends CheezCapOption { var $options; + var $options_labels; function __construct( $_name, $_desc, $_id, $_options, $_stdIndex = 0, $_options_labels = array(), $_validation_cb = false ) { $_std = ! isset( $_options[$_stdIndex] ) ? $_options[0] : $_options[$_stdIndex];