From 966a556e1ecf45ec53e89b7e092cd3a228c8deb7 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 26 Jul 2006 11:58:08 +0000 Subject: [PATCH] Fixed edit mode flag git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4317 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/personal/connectivity/class_intranetAccount.inc | 2 +- plugins/personal/connectivity/class_opengwAccount.inc | 2 +- plugins/personal/connectivity/class_phpgwAccount.inc | 2 +- plugins/personal/connectivity/class_pptpAccount.inc | 2 +- plugins/personal/connectivity/class_pureftpdAccount.inc | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/personal/connectivity/class_intranetAccount.inc b/plugins/personal/connectivity/class_intranetAccount.inc index 46f44deab..248047c3c 100644 --- a/plugins/personal/connectivity/class_intranetAccount.inc +++ b/plugins/personal/connectivity/class_intranetAccount.inc @@ -68,7 +68,7 @@ class intranetAccount extends plugin $smarty->assign("tabbed", 0); } - if((!$this->ReadOnly) && ($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { + if((!$this->ReadOnly) && (($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) ){ $smarty->assign('gosaIntranetACL', ""); }else{ $smarty->assign('gosaIntranetACL', " disabled "); diff --git a/plugins/personal/connectivity/class_opengwAccount.inc b/plugins/personal/connectivity/class_opengwAccount.inc index 3b5f87470..c1da16c24 100644 --- a/plugins/personal/connectivity/class_opengwAccount.inc +++ b/plugins/personal/connectivity/class_opengwAccount.inc @@ -125,7 +125,7 @@ class opengwAccount extends plugin $smarty->assign($acl."ACL",$this->getacl($acl,$this->ReadOnly)); } - if((!$this->ReadOnly)&&($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { + if((!$this->ReadOnly)&&(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) { $smarty->assign('opengwAccountACL', ""); }else{ $smarty->assign('opengwAccountACL', " disabled "); diff --git a/plugins/personal/connectivity/class_phpgwAccount.inc b/plugins/personal/connectivity/class_phpgwAccount.inc index c458f8eb0..0080bbbc9 100644 --- a/plugins/personal/connectivity/class_phpgwAccount.inc +++ b/plugins/personal/connectivity/class_phpgwAccount.inc @@ -42,7 +42,7 @@ class phpgwAccount extends plugin $smarty->assign("phpgwState", ""); } - if((!$this->ReadOnly)&&($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { + if((!$this->ReadOnly)&&(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) { $smarty->assign('phpgwAccountACL', ""); }else{ $smarty->assign('phpgwAccountACL', " disabled "); diff --git a/plugins/personal/connectivity/class_pptpAccount.inc b/plugins/personal/connectivity/class_pptpAccount.inc index a03777944..2330728c1 100644 --- a/plugins/personal/connectivity/class_pptpAccount.inc +++ b/plugins/personal/connectivity/class_pptpAccount.inc @@ -55,7 +55,7 @@ class pptpAccount extends plugin $smarty->assign("wstate", "disabled"); } - if((!$this->ReadOnly) && ($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { + if((!$this->ReadOnly) && (($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) { $smarty->assign('gosapptpACL', ""); }else{ $smarty->assign('gosapptpACL', " disabled "); diff --git a/plugins/personal/connectivity/class_pureftpdAccount.inc b/plugins/personal/connectivity/class_pureftpdAccount.inc index 47c5aaf18..1bedf3462 100644 --- a/plugins/personal/connectivity/class_pureftpdAccount.inc +++ b/plugins/personal/connectivity/class_pureftpdAccount.inc @@ -70,7 +70,7 @@ class pureftpdAccount extends plugin } $smarty->assign("use_FTPStatus", ($this->FTPStatus == "disabled") ? "checked" : ""); - if((!$this->ReadOnly)&&($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { + if((!$this->ReadOnly)&&(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) ){ $smarty->assign('pureftpdACL', ""); }else{ $smarty->assign('pureftpdACL', " disabled "); -- 2.30.2