Selaa lähdekoodia

new dns helper class

andre 6 kuukautta sitten
vanhempi
commit
8c35750650
1 muutettua tiedostoa jossa 10 lisäystä ja 1 poistoa
  1. 10 1
      kerioEmail.php

+ 10 - 1
kerioEmail.php

@@ -123,7 +123,7 @@ function KerioEmail_ClientArea($params)
 {
 
     require_once __DIR__ . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR . 'App' . DIRECTORY_SEPARATOR . 'AppContext.php';
-    
+
     $appContext = new AppContext();
     $productManager = new ProductManager;
     $productManager->loadByHostingId($params['serviceid']);
@@ -134,6 +134,15 @@ function KerioEmail_ClientArea($params)
     $response['templateVariables']['acc_add'] = $params['configoptions']['acc_add'] ? $params['configoptions']['acc_add'] : 0;
     $response['templateVariables']['domainBaseSize'] = $domainBaseSize;
     $response['templateVariables']['domainAddSize'] = $params['configoptions']['domainAddSize'] ? $params['configoptions']['domainAddSize'] : 0;
+    
+	logModuleCall(
+		'kerioEmail',
+		__FUNCTION__,
+		$params,
+		'Debug',
+		$response['templateVariables']
+	);
+
     return $response;
 }