mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #9362 from owncloud/public-servicewarningfix
Fix service warning
This commit is contained in:
commit
eaf32a7b54
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ try {
|
|||
if (!$pathInfo && !isset($_GET['service'])) {
|
||||
header('HTTP/1.0 404 Not Found');
|
||||
exit;
|
||||
} elseif ($_GET['service']) {
|
||||
} elseif (isset($_GET['service'])) {
|
||||
$service = $_GET['service'];
|
||||
} else {
|
||||
$pathInfo = trim($pathInfo, '/');
|
||||
|
|
|
|||
Loading…
Reference in a new issue