diff options
author | friendica <info@friendica.com> | 2012-02-21 23:35:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-21 23:35:50 -0800 |
commit | a19ddb48eee91608b9b0e368e2db51765e66c089 (patch) | |
tree | b5afdda92e46c571275f7add72116b35a06a953b /mod/wall_upload.php | |
parent | 91c334902565b2ceb7fd26735b4d501973e28557 (diff) | |
download | volse-hubzilla-a19ddb48eee91608b9b0e368e2db51765e66c089.tar.gz volse-hubzilla-a19ddb48eee91608b9b0e368e2db51765e66c089.tar.bz2 volse-hubzilla-a19ddb48eee91608b9b0e368e2db51765e66c089.zip |
waitman gobble media upload via api patch
Diffstat (limited to 'mod/wall_upload.php')
-rwxr-xr-x | mod/wall_upload.php | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 278c21354..64f174a78 100755 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -101,10 +101,24 @@ function wall_upload_post(&$a) { $basename = basename($filename); - if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) - echo "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.jpg[/img][/url]\n\n"; - else - echo '<br /><br /><a href="' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '" ><img src="' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.jpg\" alt=\"$basename\" /></a><br /><br />"; + +/* mod Waitman Gobble NO WARRANTY */ + +//if we get the signal then return the image url info in BBCODE, otherwise this outputs the info and bails (for the ajax image uploader on wall post) + if ($_REQUEST['hush']!='yeah') { + + /*existing code*/ + if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) + echo "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.jpg[/img][/url]\n\n"; + else + echo '<br /><br /><a href="' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '" ><img src="' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.jpg\" alt=\"$basename\" /></a><br /><br />"; + /*existing code*/ + + } else { + $m = '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.jpg[/img][/url]"; + return($m); + } +/* mod Waitman Gobble NO WARRANTY */ killme(); // NOTREACHED |