diff --git a/plugins/hmailserver-change-password/index.php b/plugins/hmailserver-change-password/index.php index 4bd153135..c499450e2 100644 --- a/plugins/hmailserver-change-password/index.php +++ b/plugins/hmailserver-change-password/index.php @@ -14,7 +14,7 @@ class HmailserverChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!class_exists('COM')) { - return 'The PHP exention COM must be installed to use this plugin'; + return 'The PHP extension COM must be installed to use this plugin'; } return ''; diff --git a/plugins/ispconfig-change-password/index.php b/plugins/ispconfig-change-password/index.php index 1c45e37fc..34906074f 100644 --- a/plugins/ispconfig-change-password/index.php +++ b/plugins/ispconfig-change-password/index.php @@ -14,13 +14,13 @@ class IspconfigChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!extension_loaded('pdo') || !class_exists('PDO')) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } $aDrivers = \PDO::getAvailableDrivers(); if (!is_array($aDrivers) || !in_array('mysql', $aDrivers)) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } return ''; diff --git a/plugins/ispmail-change-password/index.php b/plugins/ispmail-change-password/index.php index 5a924622c..5dceae56e 100755 --- a/plugins/ispmail-change-password/index.php +++ b/plugins/ispmail-change-password/index.php @@ -14,13 +14,13 @@ class IspmailChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!extension_loaded('pdo') || !class_exists('PDO')) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } $aDrivers = \PDO::getAvailableDrivers(); if (!is_array($aDrivers) || !in_array('mysql', $aDrivers)) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } return ''; diff --git a/plugins/ldap-change-password/index.php b/plugins/ldap-change-password/index.php index af201cedf..546249e2d 100644 --- a/plugins/ldap-change-password/index.php +++ b/plugins/ldap-change-password/index.php @@ -14,7 +14,7 @@ class LdapChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!\function_exists('ldap_connect')) { - return 'The LDAP PHP exention must be installed to use this plugin'; + return 'The LDAP PHP extension must be installed to use this plugin'; } return ''; diff --git a/plugins/ldap-contacts-suggestions/index.php b/plugins/ldap-contacts-suggestions/index.php index 7e77f2790..b02fc1c37 100644 --- a/plugins/ldap-contacts-suggestions/index.php +++ b/plugins/ldap-contacts-suggestions/index.php @@ -14,7 +14,7 @@ class LdapContactsSuggestionsPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!\function_exists('ldap_connect')) { - return 'The LDAP PHP exention must be installed to use this plugin'; + return 'The LDAP PHP extension must be installed to use this plugin'; } return ''; diff --git a/plugins/mailcow-change-password/index.php b/plugins/mailcow-change-password/index.php index fdd58cf09..ae6c0443f 100644 --- a/plugins/mailcow-change-password/index.php +++ b/plugins/mailcow-change-password/index.php @@ -14,13 +14,13 @@ class MailcowChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!extension_loaded('pdo') || !class_exists('PDO')) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } $aDrivers = \PDO::getAvailableDrivers(); if (!is_array($aDrivers) || !in_array('mysql', $aDrivers)) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } return ''; diff --git a/plugins/postfixadmin-change-password/index.php b/plugins/postfixadmin-change-password/index.php index 1068d4ee2..3e1223d4b 100755 --- a/plugins/postfixadmin-change-password/index.php +++ b/plugins/postfixadmin-change-password/index.php @@ -14,13 +14,13 @@ class PostfixadminChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin { if (!extension_loaded('pdo') || !class_exists('PDO')) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } $aDrivers = \PDO::getAvailableDrivers(); if (!is_array($aDrivers) || !in_array('mysql', $aDrivers)) { - return 'The PHP exention PDO (mysql) must be installed to use this plugin'; + return 'The PHP extension PDO (mysql) must be installed to use this plugin'; } return '';