From f8703fabe95cf41e9859a642b68f55bd93012902 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 15 Mar 2013 16:37:58 +0100 Subject: [PATCH] Fix links --- developer_manual/app/general/security.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/app/general/security.rst b/developer_manual/app/general/security.rst index 254244e9d..5c8be8f5d 100644 --- a/developer_manual/app/general/security.rst +++ b/developer_manual/app/general/security.rst @@ -197,7 +197,7 @@ ownCloud offers three simple checks: * **OCP\JSON::checkAdminUser()**: Checks if the logged in user has admin privileges * **OCP\JSON::checkSubAdminUser()**: Checks if the logged in user has group admin privileges -Using the App Framework, these checks are already automatically performed for each request and have to be explicitely turned off by using annotations above your controller method, see :doc:`../app/controllers`. +Using the App Framework, these checks are already automatically performed for each request and have to be explicitely turned off by using annotations above your controller method, see :doc:`../appframework/controllers`. Additionally always check if the user has the right to perform that action. (e.g. a user should not be able to delete other users' bookmarks). @@ -219,7 +219,7 @@ To prevent CSRF in an app, be sure to call the following method at the top of al