diff options
author | Friendika <info@friendika.com> | 2010-12-22 14:16:22 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-22 14:16:22 -0800 |
commit | 6808d53d0f8044a395a4e0099689d282285a0ac0 (patch) | |
tree | 90d362dadbff52ab596bca6f085c9910e10ca7ce /mod/follow.php | |
parent | eb6cefaea334fe02e3a77643eb1fc31eaaab5a6e (diff) | |
download | volse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.tar.gz volse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.tar.bz2 volse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.zip |
plugin/addon API landing - still things left to do before it's useful
Diffstat (limited to 'mod/follow.php')
-rw-r--r-- | mod/follow.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/follow.php b/mod/follow.php index d5651ea39..5f0f3f7e3 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -182,7 +182,7 @@ function follow_post(&$a) { ); - if((x($contact,'notify')) && (strlen($contact['notify']))) { + if((count($r)) && (x($contact,'notify')) && (strlen($contact['notify']))) { require_once('include/salmon.php'); slapper($r[0],$contact['notify'],$slap); } |