diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-21 16:01:19 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-21 16:01:19 -0700 |
commit | db89a1eb449d60c02d727f0118919872ceee9be9 (patch) | |
tree | 142818b2d8815a2c33d969b8baee1a76cc99e633 /mod/like.php | |
parent | 85fbee3aa464c13241437c7d1969beffd5860f78 (diff) | |
download | volse-hubzilla-db89a1eb449d60c02d727f0118919872ceee9be9.tar.gz volse-hubzilla-db89a1eb449d60c02d727f0118919872ceee9be9.tar.bz2 volse-hubzilla-db89a1eb449d60c02d727f0118919872ceee9be9.zip |
prepare for open source server release
Diffstat (limited to 'mod/like.php')
-rw-r--r-- | mod/like.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/like.php b/mod/like.php index d52b3a324..2ee887241 100644 --- a/mod/like.php +++ b/mod/like.php @@ -97,7 +97,7 @@ function like_content(&$a) { $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); - proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" > notify.out &", + proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &", array(),$foo)); return; } @@ -164,7 +164,7 @@ EOT; $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); - proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" > notify.out &", + proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"like\" \"$post_id\" &", array(),$foo)); return; // NOTREACHED |