PHP 8.2 compatibility: Fixed more "Creation of dynamic property is

deprecated" errors
This commit is contained in:
azett 2024-01-21 13:44:35 +01:00
parent b2ade7ae5c
commit 104b960211
2 changed files with 5 additions and 1 deletions

View File

@ -1562,6 +1562,9 @@ class BPlusTree {
var $fifo_enabled = false;
var $file = null;
var $nodesize = null;
var $keylen = null;
var $position = null;
/**
* constructor

View File

@ -6,7 +6,8 @@ class plugin_indexer extends fs_filelister {
var $_varname = 'fp_plugins';
var $_enabledlist = null;
var $enabledlist = null;
var $_directory = PLUGINS_DIR;
function __construct() {