aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Dirsort.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-01-09 21:54:41 +0000
committerMario <mario@mariovavti.com>2021-01-11 19:55:07 +0100
commit3fe67eb646befb47b3d421e12e55020f035e26b3 (patch)
tree626f47a426d408c54fa27f9430166ddc5581d495 /Zotlabs/Widget/Dirsort.php
parent6b57f163bdb6cb3ccfea7a541b40d01f4a21e6bc (diff)
downloadvolse-hubzilla-3fe67eb646befb47b3d421e12e55020f035e26b3.tar.gz
volse-hubzilla-3fe67eb646befb47b3d421e12e55020f035e26b3.tar.bz2
volse-hubzilla-3fe67eb646befb47b3d421e12e55020f035e26b3.zip
more libzotdir
(cherry picked from commit e339e897ff7f856cf5b352f7754f3d1eea240ddb)
Diffstat (limited to 'Zotlabs/Widget/Dirsort.php')
-rw-r--r--Zotlabs/Widget/Dirsort.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Widget/Dirsort.php b/Zotlabs/Widget/Dirsort.php
index e75a00e50..2fb38b7df 100644
--- a/Zotlabs/Widget/Dirsort.php
+++ b/Zotlabs/Widget/Dirsort.php
@@ -2,10 +2,10 @@
namespace Zotlabs\Widget;
-require_once('include/dir_fns.php');
+use Zotlabs\Lib\Libzotdir;
class Dirsort {
function widget($arr) {
- return dir_sort_links();
+ return Libzotdir::dir_sort_links();
}
}