diff options
author | Friendika <info@friendika.com> | 2011-08-19 02:24:30 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-19 02:24:30 -0700 |
commit | 395faae0b2eee4a134799f55b17784487088eb41 (patch) | |
tree | 07496dda986a4c5f694d9719b1b893bf0fd72830 /include/notifier.php | |
parent | 4cef4ec918db7d2f4f5902b4a731f4076a98084d (diff) | |
download | volse-hubzilla-395faae0b2eee4a134799f55b17784487088eb41.tar.gz volse-hubzilla-395faae0b2eee4a134799f55b17784487088eb41.tar.bz2 volse-hubzilla-395faae0b2eee4a134799f55b17784487088eb41.zip |
double url encode diaspora communications
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index 8572b53dd..cf8871fb9 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -502,7 +502,8 @@ function notifier_run($argv, $argc){ } break; case NETWORK_DIASPORA: - if(get_config('system','dfrn_only') || (! get_config('diaspora_enabled')) || (! $normal_mode)) + require_once('include/diaspora.php'); + if(get_config('system','dfrn_only') || (! get_config('system','diaspora_enabled')) || (! $normal_mode)) break; if($target_item['verb'] === ACTIVITY_DISLIKE) { |