diff options
author | Abinoam P. Marques Jr <abinoam@gmail.com> | 2012-02-16 02:52:35 -0800 |
---|---|---|
committer | Abinoam P. Marques Jr <abinoam@gmail.com> | 2012-02-16 02:52:35 -0800 |
commit | 4ac001663eb8035cd056750eb914c8b7d47a1180 (patch) | |
tree | 276e09f8175da8fed64a9675980a41660e9c522f | |
parent | 1b445d511b729d114439935c1315f1f1ead7e1b2 (diff) | |
download | volse-hubzilla-4ac001663eb8035cd056750eb914c8b7d47a1180.tar.gz volse-hubzilla-4ac001663eb8035cd056750eb914c8b7d47a1180.tar.bz2 volse-hubzilla-4ac001663eb8035cd056750eb914c8b7d47a1180.zip |
oexchange small fix [_POST -> _REQUEST]
-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); |