Merge pull request #9362 from owncloud/public-servicewarningfix

Fix service warning
remotes/origin/ldap_group_count
Thomas Müller 11 years ago
commit eaf32a7b54
  1. 2
      public.php

@ -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…
Cancel
Save