Fix broken error reporting in getfile

This commit is contained in:
mkuba50
2019-04-27 21:01:25 +02:00
parent c9a741eaed
commit 5f2493cf2e
3 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?php
require_once dirname(__FILE__).'/../api/shared/main.php';
function brand($script) {
$projVersion = '1.0.0';
function brand($script = null) {
$projVersion = '1.0.1';
return 'UUP dump standalone v'.$projVersion;
}