aboutsummaryrefslogtreecommitdiffstats
path: root/include/directory.php
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2012-05-22 08:46:02 +0200
committerzottel <github@zottel.net>2012-05-22 08:46:02 +0200
commite9c86c0fd0fb87b49e60669e6d4be810ca426ec4 (patch)
treecfee80cc9122974a4304591aa7d54ca5fc8a71ea /include/directory.php
parent2cd3ec7b983327f8c162845d0f4b8d9753f30e27 (diff)
parent02502c3a7460a1af3414b65232fd7c672a76d941 (diff)
downloadvolse-hubzilla-e9c86c0fd0fb87b49e60669e6d4be810ca426ec4.tar.gz
volse-hubzilla-e9c86c0fd0fb87b49e60669e6d4be810ca426ec4.tar.bz2
volse-hubzilla-e9c86c0fd0fb87b49e60669e6d4be810ca426ec4.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'include/directory.php')
-rw-r--r--include/directory.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/directory.php b/include/directory.php
index cae78adb4..45386183c 100644
--- a/include/directory.php
+++ b/include/directory.php
@@ -24,6 +24,9 @@ function directory_run($argv, $argc){
load_config('system');
+ load_hooks();
+
+
$a->set_baseurl(get_config('system','url'));
$dir = get_config('system','directory_submit_url');
@@ -31,7 +34,12 @@ function directory_run($argv, $argc){
if(! strlen($dir))
return;
- fetch_url($dir . '?url=' . bin2hex($argv[1]));
+ $arr = array('url' => $argv[1]);
+
+ call_hooks('globaldir_update', $arr);
+
+ if(strlen($arr['url']))
+ fetch_url($dir . '?url=' . bin2hex($arr['url']));
return;
}