From fd5c92822c2ff8f51df1d8e9117d5f5c5ea74bd9 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 13 Jul 2017 22:29:15 -0700 Subject: minor optimisation --- Zotlabs/Module/Wall_attach.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Zotlabs/Module/Wall_attach.php') diff --git a/Zotlabs/Module/Wall_attach.php b/Zotlabs/Module/Wall_attach.php index 5b3768da9..03d4cb37b 100644 --- a/Zotlabs/Module/Wall_attach.php +++ b/Zotlabs/Module/Wall_attach.php @@ -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); -- cgit v1.2.3