Fix messed up variables

This commit is contained in:
mkuba50 2018-10-11 21:29:54 +02:00
parent 5828423453
commit fa256217c9
2 changed files with 3 additions and 3 deletions

View File

@ -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');

View File

@ -16,7 +16,7 @@ limitations under the License.
*/
function uupApiVersion() {
return '1.15.9';
return '1.15.10';
}
require_once dirname(__FILE__).'/auths.php';