aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-01-09 21:54:41 +0000
committerMario <mario@mariovavti.com>2021-01-09 21:54:41 +0000
commite339e897ff7f856cf5b352f7754f3d1eea240ddb (patch)
tree91609936df67fe24dd50d12663925d00d0704dbb /Zotlabs/Widget
parentfb5188a8c66a7df8b8e6bdf7bcbc1df81ee18127 (diff)
downloadvolse-hubzilla-e339e897ff7f856cf5b352f7754f3d1eea240ddb.tar.gz
volse-hubzilla-e339e897ff7f856cf5b352f7754f3d1eea240ddb.tar.bz2
volse-hubzilla-e339e897ff7f856cf5b352f7754f3d1eea240ddb.zip
more libzotdir
Diffstat (limited to 'Zotlabs/Widget')
-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();
}
}