Merge pull request #7917 from nextcloud/warn_old_ocs_route_cons
Warn about the old OCP\API::register construct for OCS
This commit is contained in:
commit
f39f95e4e8
|
@ -56,6 +56,10 @@ try {
|
|||
OC_App::loadApps();
|
||||
|
||||
OC::$server->getRouter()->match('/ocs'.\OC::$server->getRequest()->getRawPathInfo());
|
||||
|
||||
sleep(1);
|
||||
OC::$server->getLogger()->info('This uses an old OCP\API::register construct. This will be removed in a future version of Nextcloud. Please migrate to the OCSController');
|
||||
|
||||
return;
|
||||
} catch (ResourceNotFoundException $e) {
|
||||
// Fall through the not found
|
||||
|
|
Loading…
Reference in New Issue