Browse Source

bugfix array

Andre Genrich 5 years ago
parent
commit
2c4f4f8706
1 changed files with 2 additions and 2 deletions
  1. 2 2
      zimbraSingle.inc

+ 2 - 2
zimbraSingle.inc

@@ -382,12 +382,12 @@ function zimbraSingleConfigOptions() {
     }
     $cosNames = recursiveFindAll($response, 'NAME');
     $configOptions = array();
-    $configOptions['cos'] = [
+    $configOptions['cos'] = array (
         "FriendlyName" => "Class of Service",
         "Type" => "radio",
         "Options" => implode(',', $cosNames),
         "Description" => "Tick to use this COS",
-    ];
+    );
     $apiDomainManager = new Zm_Domain($api);
     $response = $apiDomainManager->getAllDomains();
     $domainNames = recursiveFindAll($response, 'NAME');