Przeglądaj źródła

check reserved addresses

andre 4 lat temu
rodzic
commit
5c57fb11ec
1 zmienionych plików z 4 dodań i 2 usunięć
  1. 4 2
      zimbraAddressAvailable.php

+ 4 - 2
zimbraAddressAvailable.php

@@ -36,11 +36,13 @@ if(!filter_var($accountName, FILTER_VALIDATE_EMAIL)) {
 $zmAuthPIDs = Capsule::table('tblproducts')
 	->select('id')
 	->where('gid', zmAuthGids)
-	->get();
+	->get()
+	->toArray();
 $hostingIDs = Capsule::table('tblhosting')
 	->select('id')
 	->where('packageid', $zmAuthPIDs)
-	->get();
+	->get()
+	->toArray();
 
 logModuleCall(
 	'zimbrasingle',