diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-11-09 08:45:45 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-11-09 08:45:45 +0100 |
commit | ac8c80ddbe5414c59a72881684e1079289270f12 (patch) | |
tree | 2b8da0d10d45d7aa29e68ea35b52b614fe1cf128 /Zotlabs/Module/Admin/Themes.php | |
parent | 17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd (diff) | |
download | volse-hubzilla-ac8c80ddbe5414c59a72881684e1079289270f12.tar.gz volse-hubzilla-ac8c80ddbe5414c59a72881684e1079289270f12.tar.bz2 volse-hubzilla-ac8c80ddbe5414c59a72881684e1079289270f12.zip |
Fix incorrect module imports.
When importing modules with use statements, they always require the
fully qualified module name. Iow, there's no need to prefix them with an
extra backslash.
Ref: https://www.php.net/manual/en/language.namespaces.importing.php
Diffstat (limited to 'Zotlabs/Module/Admin/Themes.php')
-rw-r--r-- | Zotlabs/Module/Admin/Themes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Admin/Themes.php b/Zotlabs/Module/Admin/Themes.php index 6793f56b1..09fec9725 100644 --- a/Zotlabs/Module/Admin/Themes.php +++ b/Zotlabs/Module/Admin/Themes.php @@ -2,7 +2,7 @@ namespace Zotlabs\Module\Admin; -use \Michelf\MarkdownExtra; +use Michelf\MarkdownExtra; use Zotlabs\Lib\Config; /** |