From 4b465713705e21439cc53fcc76d5f66b40daa931 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 25 Apr 2016 18:36:50 +0200 Subject: [PATCH] check whether index is set before using it --- lib/private/installer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/installer.php b/lib/private/installer.php index 421e281e56..24c79b2dd8 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -269,7 +269,8 @@ class OC_Installer{ //download the file if necessary if($data['source']=='http') { $pathInfo = pathinfo($data['href']); - $path = \OC::$server->getTempManager()->getTemporaryFile('.' . $pathInfo['extension']); + $extension = isset($pathInfo['extension']) ? '.' . $pathInfo['extension'] : ''; + $path = \OC::$server->getTempManager()->getTemporaryFile($extension); if(!isset($data['href'])) { throw new \Exception($l->t("No href specified when installing app from http")); }