diff options
author | Joas Schilling <coding@schilljs.com> | 2021-12-01 21:09:11 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-12-01 21:09:11 +0100 |
commit | bf7c9aa58cec0f6d67f64394d37f2f71e4c1e44c (patch) | |
tree | a073edf30384d51c8c55ae788d42e6848b7c4e4a /apps/files_trashbin/list.php | |
parent | 44ecd0d1d5f77e6798c1dd08da8120ba86585758 (diff) | |
download | nextcloud-server-bf7c9aa58cec0f6d67f64394d37f2f71e4c1e44c.tar.gz nextcloud-server-bf7c9aa58cec0f6d67f64394d37f2f71e4c1e44c.zip |
list.php files are only invoked via ViewController and APIController
Both of them actually check that the user is logged in before
and also the list.php files themselves would break with
getUserSession()->getUser()->getUID() which they contain.
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_trashbin/list.php')
-rw-r--r-- | apps/files_trashbin/list.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/files_trashbin/list.php b/apps/files_trashbin/list.php index 3a4e6d7d1e2..117d3b4ddfe 100644 --- a/apps/files_trashbin/list.php +++ b/apps/files_trashbin/list.php @@ -24,8 +24,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/> * */ -// Check if we are a user -OC_Util::checkLoggedIn(); $config = \OC::$server->getConfig(); $userSession = \OC::$server->getUserSession(); |