From 66b24507e18a2717d0b07018598305e8eff84c80 Mon Sep 17 00:00:00 2001 From: REJack Date: Sun, 1 May 2016 15:19:45 +0200 Subject: [PATCH] fixed `Quick Start`-Section (changed `deny` to `deny_group`) (found by #118) --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 30a078c..6ec1eb7 100644 --- a/index.html +++ b/index.html @@ -125,9 +125,9 @@ We will assign access with allow_group() function.

$this->aauth->allow_group('hobbits','immortality'); -

Wait a minute! Hobbits should not have immortality. We need to fix this, we can use deny() to remove the permission.

+

Wait a minute! Hobbits should not have immortality. We need to fix this, we can use deny_group() to remove the permission.

-
$this->aauth->deny('hobbits','immortality');
+
$this->aauth->deny_group('hobbits','immortality');

Grant User Permissions