X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwall_upload.php;h=1f71f36b62d1036f6b224e3df19f0b6d6463bc18;hb=8d6d008d2844f55889392f8087de123a88c8349d;hp=c789262c648b4175e018078f4d4798e41b091f50;hpb=1febf182ad42482bb483738fa35ddc0a54141076;p=friendica.git diff --git a/mod/wall_upload.php b/mod/wall_upload.php index c789262c64..1f71f36b62 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -2,7 +2,7 @@ require_once('include/Photo.php'); -function wall_upload_post(&$a, $desktopmode = true) { +function wall_upload_post(App $a, $desktopmode = true) { logger("wall upload: starting new upload", LOGGER_DEBUG); @@ -277,16 +277,10 @@ function wall_upload_post(&$a, $desktopmode = true) { /* 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 we get the signal then return the image url info in BBCODE if ($_REQUEST['hush']!='yeah') { - if(local_user() && (! feature_enabled(local_user(),'richtext') || x($_REQUEST['nomce'])) ) { - echo "\n\n" . '[url=' . App::get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . App::get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n"; - } - else { - echo '

getExt()."\" alt=\"$basename\" />

"; - } - } - else { + echo "\n\n" . '[url=' . App::get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . App::get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n"; + } else { $m = '[url='.App::get_baseurl().'/photos/'.$page_owner_nick.'/image/'.$hash.'][img]'.App::get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]"; return($m); }