diff options
author | friendica <info@friendica.com> | 2013-08-22 14:59:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-22 14:59:17 -0700 |
commit | 347faa59b6f112ae76122e55f57ee73968479d7a (patch) | |
tree | c63b917c7ba75ece27086a95497106c4e958d097 | |
parent | c102a4e428dd827667a3d8194523e94358cde5a5 (diff) | |
download | volse-hubzilla-347faa59b6f112ae76122e55f57ee73968479d7a.tar.gz volse-hubzilla-347faa59b6f112ae76122e55f57ee73968479d7a.tar.bz2 volse-hubzilla-347faa59b6f112ae76122e55f57ee73968479d7a.zip |
proc_run, not proc_exec
-rw-r--r-- | mod/connect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/connect.php b/mod/connect.php index 5731d050d..1d0a21496 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -43,7 +43,7 @@ function connect_post(&$a) { intval(PAGE_PREMIUM), intval(local_user()) ); - proc_exec('php','include/notifier.php','refresh_all',$channel['channel_id']); + proc_run('php','include/notifier.php','refresh_all',$channel['channel_id']); } set_pconfig($channel['channel_id'],'system','selltext',$text); goaway(z_root() . '/' . $a->query_string); |