From c935cf9caceed22fe6816b31fe7fbf05ca1f7344 Mon Sep 17 00:00:00 2001 From: kremsy Date: Sun, 16 Feb 2014 13:41:41 +0100 Subject: [PATCH] adjust --- application/core/ManiaExchange/MXMapInfo.php | 4 ++-- application/core/Maps/MapManager.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/application/core/ManiaExchange/MXMapInfo.php b/application/core/ManiaExchange/MXMapInfo.php index 8c1fb32b..b89c69bd 100644 --- a/application/core/ManiaExchange/MXMapInfo.php +++ b/application/core/ManiaExchange/MXMapInfo.php @@ -15,7 +15,7 @@ class MXMapInfo { public $titlepack, $style, $envir, $mood, $dispcost, $lightmap, $modname, $exever; public $exebld, $routes, $length, $unlimiter, $laps, $difficulty, $lbrating, $trkvalue; public $replaytyp, $replayid, $replaycnt, $acomment, $awards, $comments, $rating; - public $ratingex, $ratingcnt, $pageurl, $replayurl, $imageurl, $thumburl, $downLoadUrl; + public $ratingex, $ratingcnt, $pageurl, $replayurl, $imageurl, $thumburl, $downloadurl; /** * Returns map object with all available data from MX map data @@ -94,7 +94,7 @@ class MXMapInfo { $this->pageurl = 'http://' . $this->prefix . '.mania-exchange.com/' . $dir . '/view/' . $this->id; $this->imageurl = 'http://' . $this->prefix . '.mania-exchange.com/' . $dir . '/screenshot/normal/' . $this->id; $this->thumburl = 'http://' . $this->prefix . '.mania-exchange.com/' . $dir . '/screenshot/small/' . $this->id; - $this->downLoadUrl = 'http://' . $this->prefix . '.mania-exchange.com/' . $dir . '/download/' . $this->id; + $this->downloadurl = 'http://' . $this->prefix . '.mania-exchange.com/' . $dir . '/download/' . $this->id; if ($this->prefix == 'tm' && $this->replayid > 0) { $this->replayurl = 'http://' . $this->prefix . '.mania-exchange.com/replays/download/' . $this->replayid; diff --git a/application/core/Maps/MapManager.php b/application/core/Maps/MapManager.php index 743477e4..e6e15069 100644 --- a/application/core/Maps/MapManager.php +++ b/application/core/Maps/MapManager.php @@ -508,7 +508,7 @@ class MapManager implements CallbackListener { } $this->processMapFile($file, $mapInfo, $mapDir, $login, $update); }; - $this->maniaControl->fileReader->loadFile($mapInfo->downLoadUrl, $function); + $this->maniaControl->fileReader->loadFile($mapInfo->downloadurl, $function); }); } }