From 544401c21041d59ed718eb773fee8d959473b935 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 1 Mar 2013 12:54:58 +0100 Subject: [PATCH] Default permission should be set to False, not to True (the previous code was mainly for debugging) --- draft/application/cms/src/storage/cms_storage.e | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/draft/application/cms/src/storage/cms_storage.e b/draft/application/cms/src/storage/cms_storage.e index dfe92401..404b4270 100644 --- a/draft/application/cms/src/storage/cms_storage.e +++ b/draft/application/cms/src/storage/cms_storage.e @@ -62,10 +62,8 @@ feature -- Access: user do if s = Void then Result := True - elseif s.has_substring ("admin") or s.has_substring ("users") then - Result := False else - Result := True + Result := False end end