viewgit/inc/functions.php:22 Function utf8_encode() is deprecated [8192]

Fix deprecaation warnings related to help system, created new db version with recent wiki changes

Chris Pollett [2023-09-21 16:Sep:st]
Fix deprecaation warnings related to help system, created new db version with recent wiki changes
Filename
src/data/public_default.db
src/views/View.php
diff --git a/src/data/public_default.db b/src/data/public_default.db
index 86fc16b0a..3498429fc 100644
Binary files a/src/data/public_default.db and b/src/data/public_default.db differ
diff --git a/src/views/View.php b/src/views/View.php
index 2399c2541..26727e4ab 100644
--- a/src/views/View.php
+++ b/src/views/View.php
@@ -88,6 +88,16 @@ abstract class View
      * @var object
      */
     public $layout_object;
+    /**
+     * Meta info for group wiki pages
+     * @var array
+     */
+    public $head_objects;
+    /**
+     * Contents of group wiki pages
+     * @var array
+     */
+    public $page_objects;
     /**
      * Array of Element's that have been instantiated for this View
      * @var array
ViewGit