Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
AJXP_Utils::getRemoteContent take only 1 argument
Browse files Browse the repository at this point in the history
see d5f7340
maybe we should use same if else as in getUpgradePath

Signed-off-by: Etienne CHAMPETIER <etienne.champetier@fiducial.net>
  • Loading branch information
Etienne CHAMPETIER committed Dec 2, 2013
1 parent 4125237 commit 4abc150
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -156,7 +156,7 @@ public function downloadArchive()
if ($this->debugMode && is_file($this->archive)) {
return "Already downloaded";
}
$content = AJXP_Utils::getRemoteContent($this->archiveURL, null, self::$context);
$content = AJXP_Utils::getRemoteContent($this->archiveURL);
if ($content === false || strlen($content) == 0) {
throw new Exception("Error while downloading");
}
Expand Down

0 comments on commit 4abc150

Please sign in to comment.