diff options
author | Abinoam P. Marques Jr. <abinoam@gmail.com> | 2012-02-16 04:53:37 -0800 |
---|---|---|
committer | Abinoam P. Marques Jr. <abinoam@gmail.com> | 2012-02-16 04:53:37 -0800 |
commit | 7b59ad614801920bf7544f004e96b8f24f25a700 (patch) | |
tree | c7babd24070f4dda0d4639d121b553c59c652b27 | |
parent | 652622894f505eef5ecc7ad1ddec565965acb901 (diff) | |
parent | 4ac001663eb8035cd056750eb914c8b7d47a1180 (diff) | |
download | volse-hubzilla-7b59ad614801920bf7544f004e96b8f24f25a700.tar.gz volse-hubzilla-7b59ad614801920bf7544f004e96b8f24f25a700.tar.bz2 volse-hubzilla-7b59ad614801920bf7544f004e96b8f24f25a700.zip |
Merge pull request #37 from abinoam/oex
Oexchange Small Fix
-rwxr-xr-x | mod/oexchange.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/oexchange.php b/mod/oexchange.php index 72d2bcb9e..bbb436e70 100755 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -49,7 +49,7 @@ function oexchange_content(&$a) { $post['body'] = html2bbcode($s); $post['type'] = 'wall'; - $_POST = $post; + $_REQUEST = $post; require_once('mod/item.php'); item_post($a); |