Code

fixed typo
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 29 Sep 2006 11:01:27 +0000 (11:01 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 29 Sep 2006 11:01:27 +0000 (11:01 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4839 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/systems/class_goMailServer.inc

index 58f9f5062ac7ff78d2a91e44fdf3c8b4af76c461..bb25b15bddf95ee5e814bf4ed4c0bd630665f9c2 100644 (file)
@@ -218,37 +218,37 @@ class goMailServer extends goService{
       }
   
 
-      if(preg_match("/^TranslationUp_/",$name) && $once && ($this->acl_iw_writeablei("postfixTransportTableACL"))){
+      if(preg_match("/^TranslationUp_/",$name) && $once && ($this->acl_is_writeablei("postfixTransportTableACL"))){
         $once = false;
         $key = preg_replace("/^TranslationUp_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);
         $this->postfixTransportTable = $this->ArrayUp($key,$this->postfixTransportTable) ;
       }
-      if(preg_match("/^TranslationDown_/",$name) && $once && ($this->acl_iw_writeable("postfixTransportTableACL"))){
+      if(preg_match("/^TranslationDown_/",$name) && $once && ($this->acl_is_writeable("postfixTransportTableACL"))){
         $once = false;
         $key = preg_replace("/^TranslationDown_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);
         $this->postfixTransportTable = $this->ArrayDown($key,$this->postfixTransportTable) ;
       }
-      if(preg_match("/^SenderRestrictUp_/",$name) && $once && ($this->acl_iw_writeable("postfixSenderRestrictionsACL"))){
+      if(preg_match("/^SenderRestrictUp_/",$name) && $once && ($this->acl_is_writeable("postfixSenderRestrictionsACL"))){
         $once = false;
         $key = preg_replace("/^SenderRestrictUp_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);
         $this->postfixSenderRestrictions = $this->ArrayUp($key,$this->postfixSenderRestrictions) ;
       }
-      if(preg_match("/^SenderRestrictDown_/",$name) && $once && ($this->acl_iw_writeable("postfixSenderRestrictionsACL"))){
+      if(preg_match("/^SenderRestrictDown_/",$name) && $once && ($this->acl_is_writeable("postfixSenderRestrictionsACL"))){
         $once = false;
         $key = preg_replace("/^SenderRestrictDown_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);
         $this->postfixSenderRestrictions = $this->ArrayDown($key,$this->postfixSenderRestrictions) ;
       }
-      if(preg_match("/^RecipientRestrictUp_/",$name) && $once && ($this->acl_iw_writeable("postfixRecipientRestrictionsACL"))){
+      if(preg_match("/^RecipientRestrictUp_/",$name) && $once && ($this->acl_is_writeable("postfixRecipientRestrictionsACL"))){
         $once = false;
         $key = preg_replace("/^RecipientRestrictUp_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);
         $this->postfixRecipientRestrictions = $this->ArrayUp($key,$this->postfixRecipientRestrictions) ;
       }
-      if(preg_match("/^RecipientRestrictDown_/",$name) && $once && ($this->acl_iw_writeable("postfixRecipientRestrictionsACL"))){
+      if(preg_match("/^RecipientRestrictDown_/",$name) && $once && ($this->acl_is_writeable("postfixRecipientRestrictionsACL"))){
         $once = false;
         $key = preg_replace("/^RecipientRestrictDown_/","",$name);
         $key = preg_replace("/_[xy]$/","",$key);