minor optimisation

This commit is contained in:
zotlabs 2017-07-13 22:29:15 -07:00
parent 77f71303f2
commit fd5c92822c

View file

@ -2,10 +2,8 @@
namespace Zotlabs\Module;
require_once('include/attach.php');
require_once('include/channel.php');
require_once('include/photos.php');
class Wall_attach extends \Zotlabs\Web\Controller {
function init() {
@ -56,6 +54,8 @@ class Wall_attach extends \Zotlabs\Web\Controller {
json_return_and_die($result);
}
else {
header('Range: bytes=0-' . (($x['size']) ? $x['size'] - 1 : 0));
$_FILES['userfile'] = [
'name' => $x['name'],
'type' => $x['type'],
@ -100,9 +100,6 @@ class Wall_attach extends \Zotlabs\Web\Controller {
if($using_api)
return $s;
if($partial)
header('Range: bytes=0-' . (($x['length']) ? $x['length'] - 1 : 0));
$result['message'] = $s;
json_return_and_die($result);