From fa256217c9ab3c4403426a13555535e2c7d7ca67 Mon Sep 17 00:00:00 2001 From: mkuba50 Date: Thu, 11 Oct 2018 21:29:54 +0200 Subject: [PATCH] Fix messed up variables --- get.php | 4 ++-- shared/main.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/get.php b/get.php index 17ad7ee..26e4fe5 100644 --- a/get.php +++ b/get.php @@ -189,8 +189,8 @@ function uupGetFiles($updateId = 'c2a1d787-647b-486d-b264-f90f3782cdc6', $usePac return array('error' => 'EMPTY_FILELIST'); } - $getResponse = $xmlBody = $xmlBody->GetExtendedUpdateInfo2Response; - $getResult = $getResponse = $xmlBody->GetExtendedUpdateInfo2Result; + $getResponse = $xmlBody->GetExtendedUpdateInfo2Response; + $getResult = $xmlBody->GetExtendedUpdateInfo2Result; if(!isset($getResult->FileLocations)) { consoleLogger('An error has occurred'); diff --git a/shared/main.php b/shared/main.php index eb9cf4e..0e55306 100644 --- a/shared/main.php +++ b/shared/main.php @@ -16,7 +16,7 @@ limitations under the License. */ function uupApiVersion() { - return '1.15.9'; + return '1.15.10'; } require_once dirname(__FILE__).'/auths.php';