Merge pull request #19478 from Tim-Obert/bug/19475/fix-routes-generation-authpublicsharecontroller

Change the route generation of AuthPublicShareController.php
This commit is contained in:
Roeland Jago Douma 2020-02-23 16:43:31 +01:00 committed by GitHub
commit f885cef537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -156,14 +156,19 @@ abstract class AuthPublicShareController extends PublicShareController {
);
}
/**
* @since 14.0.0
*/
private function getRoute(string $function): string {
$app = strtolower($this->appName);
$class = strtolower((new \ReflectionClass($this))->getShortName());
return $app . '.' . $class . '.' . $function;
$class = (new \ReflectionClass($this))->getShortName();
if ($this->appName === 'files_sharing') {
$class = strtolower($class);
} else if (substr($class, -10) === 'Controller') {
$class = substr($class, 0, -10);
}
return $app .'.'. $class .'.'. $function;
}
/**