diff options
author | Friendika <info@friendika.com> | 2011-08-28 19:22:27 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-28 19:22:27 -0700 |
commit | f29f228463d35f574d6d285be0cf337b7d39c541 (patch) | |
tree | aa7e977a25536397506c6c30f8e4d67eb85320d6 /include/notifier.php | |
parent | 030dcbd467d5faf01e6f62b9cd9b1be6f8974dcc (diff) | |
download | volse-hubzilla-f29f228463d35f574d6d285be0cf337b7d39c541.tar.gz volse-hubzilla-f29f228463d35f574d6d285be0cf337b7d39c541.tar.bz2 volse-hubzilla-f29f228463d35f574d6d285be0cf337b7d39c541.zip |
bring Diaspora message signing back to the source author - whether they like it or not.
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 1a3b321cf..b87aa95b1 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -109,7 +109,8 @@ function notifier_run($argv, $argc){ $uid = $r[0]['uid']; $updated = $r[0]['edited']; - $items = q("SELECT * FROM `item` WHERE `parent` = %d ORDER BY `id` ASC", + $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` + FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d ORDER BY `id` ASC", intval($parent_id) ); |