Implemented superseded update removal to fetchupd.php

This commit is contained in:
mkuba50
2017-09-30 16:38:26 +02:00
parent 03727b01ce
commit 901414dcd4
2 changed files with 23 additions and 3 deletions

View File

@ -16,11 +16,16 @@ limitations under the License.
*/
function uupApiVersion() {
return '0.4.0-alpha';
return '0.5.0-beta';
}
function uupApiPrintBrand() {
consoleLogger('UUP dump API v'.uupApiVersion());
global $uupApiBrandPrinted;
if(!isset($uupApiBrandPrinted)) {
consoleLogger('UUP dump API v'.uupApiVersion());
$uupApiBrandPrinted = 1;
}
}
function randStr($length = 4) {