Add missing equals sign

This commit is contained in:
mkuba50 2017-09-22 21:58:47 +02:00
parent e5440343c5
commit 6cf5d17abe
3 changed files with 3 additions and 4 deletions

View File

@ -25,7 +25,7 @@ function uupFetchUpd($arch = 'amd64', $ring = 'WIF', $flight = 'Active', $build
$flight = ucwords(strtolower($flight)); $flight = ucwords(strtolower($flight));
if($flight == 'Current') $flight = 'Active'; if($flight == 'Current') $flight = 'Active';
if(!($arch == 'amd64' || $arch == 'x86' || $arch = 'arm64')) { if(!($arch == 'amd64' || $arch == 'x86' || $arch == 'arm64')) {
return array('error' => 'UNKNOWN_ARCH'); return array('error' => 'UNKNOWN_ARCH');
} }

View File

@ -1,5 +1,4 @@
UUP dump API UUP dump API
------------ ------------
Work in progress project to provide needed queries for other UUP dump projects in easy way. Work in progress project to provide needed queries for other UUP dump projects in a easy way.

View File

@ -16,7 +16,7 @@ limitations under the License.
*/ */
global $apiVersion; global $apiVersion;
$apiVersion = '0.1.0-alpha'; $apiVersion = '0.1.1-alpha';
function brand() { function brand() {
global $apiVersion; global $apiVersion;