diff options
author | Mario <mario@mariovavti.com> | 2023-08-30 08:44:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-08-30 08:44:18 +0000 |
commit | e16aefec2c46760a1c78ce55dc82b801ef988689 (patch) | |
tree | 5d28638108db5c3432f68b0ea7029389c33a0b8d /Zotlabs/Module/Display.php | |
parent | 053a247cc86f9f3a7ab0b393bfec43b3b231f73d (diff) | |
download | volse-hubzilla-e16aefec2c46760a1c78ce55dc82b801ef988689.tar.gz volse-hubzilla-e16aefec2c46760a1c78ce55dc82b801ef988689.tar.bz2 volse-hubzilla-e16aefec2c46760a1c78ce55dc82b801ef988689.zip |
call init allthough it does not contain anything atm. it will set up things we need later e.g. App::$page["htmlhead"] and php will raise a warning if it does not exist. Also minor cleanup
Diffstat (limited to 'Zotlabs/Module/Display.php')
-rw-r--r-- | Zotlabs/Module/Display.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index 1a1c09d7c..31f6bb7a4 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -2,15 +2,13 @@ namespace Zotlabs\Module; use App; +use Zotlabs\Web\Controller; -require_once("include/bbcode.php"); -require_once('include/security.php'); -require_once('include/conversation.php'); -require_once('include/acl_selectors.php'); -require_once('include/items.php'); +class Display extends Controller { + function init() { -class Display extends \Zotlabs\Web\Controller { + } function get($update = 0, $load = false) { |