Переглянути джерело

[mailjet] Suppression des espaces vides au début et à la fin des clés d'api Mailjet

dev
Guillaume Bourgeois 5 роки тому
джерело
коміт
cef453b8d2
1 змінених файлів з 3 додано та 2 видалено
  1. +3
    -2
      common/models/Producer.php

+ 3
- 2
common/models/Producer.php Переглянути файл

@@ -496,11 +496,12 @@ class Producer extends ActiveRecordCommon
$apiKeysArray = explode(':', $apiKeys) ;
if(count($apiKeysArray) == 2) {
if($type == 'private') {
return $apiKeysArray[1] ;
$key = $apiKeysArray[1] ;
}
else {
return $apiKeysArray[0] ;
$key = $apiKeysArray[0] ;
}
return trim($key) ;
}
}
}

Завантаження…
Відмінити
Зберегти