From 887a8add2d927111c51167ef8b9700d03fe69e91 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Thu, 9 Sep 2010 19:14:42 -0700 Subject: populate wall element --- mod/item.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'mod/item.php') diff --git a/mod/item.php b/mod/item.php index 20a2488c5..5e4f54ce0 100644 --- a/mod/item.php +++ b/mod/item.php @@ -96,23 +96,30 @@ function item_post(&$a) { if($post_type == 'net-comment') { if($parent_item !== null) { - if($parent_item['type'] == 'remote') + if($parent_item['type'] == 'remote') { $post_type = 'remote-comment'; - else + } + else { $post_type = 'wall-comment'; + } } } + $wall = 0; + if($post_type == 'wall' || $post_type == 'wall-comment') + $wall = 1; + $notify_type = (($parent) ? 'comment-new' : 'wall-new' ); $uri = item_new_uri($a->get_hostname(),$profile_uid); - $r = q("INSERT INTO `item` (`uid`,`type`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, + $r = q("INSERT INTO `item` (`uid`,`type`,`wall`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `changed`, `uri`, `title`, `body`, `location`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`) VALUES( %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", intval($profile_uid), dbesc($post_type), + intval($wall), intval($contact_id), dbesc($contact_record['name']), dbesc($contact_record['url']), -- cgit v1.2.3