aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/item.php3
-rw-r--r--mod/profile.php15
2 files changed, 11 insertions, 7 deletions
diff --git a/mod/item.php b/mod/item.php
index 2b03ecaa2..23917161b 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -58,8 +58,9 @@ function item_post(&$a) {
intval($post_id));
}
-// require('notifier.php');
+ proc_close(proc_open("php include/notifier.php $post_id > notify.log &",
+ array(),$foo));
// notifier($a,$post_id,$parent);
diff --git a/mod/profile.php b/mod/profile.php
index 957d67be3..1caa3478f 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -149,12 +149,15 @@ function profile_content(&$a) {
if(count($r)) {
foreach($r as $rr) {
- $comment = replace_macros($template,array(
- '$id' => $rr['item_id'],
- '$profile_uid' => $a->profile['profile_uid']
- ));
-
-
+ if(can_write_wall($a,$a->profile['profile_uid'])) {
+ $comment = replace_macros($template,array(
+ '$id' => $rr['item_id'],
+ '$profile_uid' => $a->profile['profile_uid']
+ ));
+ }
+ else {
+ $comment = '';
+ }
$o .= item_display($a,$rr,$tpl,$comment);
}