From a194b7bc5bb3e857b37477ba2ff16174b97b8b17 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 30 Jul 2025 14:27:54 +0200 Subject: [PATCH] declare class variables --- inc/inc.Utils.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/inc/inc.Utils.php b/inc/inc.Utils.php index 9e644f8c1..7488f411c 100644 --- a/inc/inc.Utils.php +++ b/inc/inc.Utils.php @@ -1408,6 +1408,8 @@ class SeedDMS_Search { /* {{{ */ public $searchparams; + protected $total; + protected $dcount; protected $fcount; @@ -1420,6 +1422,8 @@ class SeedDMS_Search { /* {{{ */ protected $searchTime; + protected $facets; + public function __construct($dms, $user, $fulltextservice, $settings) { $this->dms = $dms; $this->user = $user; @@ -1428,6 +1432,7 @@ class SeedDMS_Search { /* {{{ */ $this->searchparams = []; $this->dcount = 0; $this->fcount = 0; + $this->total = 0; $this->totalPages = 0; $this->entries = array(); $this->terms = array();