Fix Path bugs after move

This commit is contained in:
Dennis Eichhorn 2018-09-21 23:15:53 +02:00
parent 4a36b725b9
commit d53d0b31fd

View File

@ -233,6 +233,6 @@ class BackendController extends Controller
$path = \realpath(__DIR__ . '/../../../Developer-Guide/README.md');
}
return $path;
return $path === false ? '' : $path;
}
}