diff options
author | Friendika <info@friendika.com> | 2011-10-04 21:45:15 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-04 21:45:15 -0700 |
commit | c2d70d005bc967e19c0da23d1490bf64e3582c10 (patch) | |
tree | 2648922f32337fcc7e829a7e1e3706eed4fbba73 /mod | |
parent | 159d06df828d3837a0bcb80add338efffa984cfb (diff) | |
download | volse-hubzilla-c2d70d005bc967e19c0da23d1490bf64e3582c10.tar.gz volse-hubzilla-c2d70d005bc967e19c0da23d1490bf64e3582c10.tar.bz2 volse-hubzilla-c2d70d005bc967e19c0da23d1490bf64e3582c10.zip |
and a typo fix
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dfrn_notify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index c7ad61ecc..1ec825786 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -456,7 +456,7 @@ function dfrn_notify_post(&$a) { $r = q("select `id` from `item` where `uri` = '%s' and AND `uid` = %d LIMIT 1", dbesc($parent_uri), intval($importer['importer_uid']) - ) + ); if($r && count($r)) { logger('dfrn_notify: received remote comment'); |