From 3bc9c5403935dc37d2202df0316e8a14bb4b6934 Mon Sep 17 00:00:00 2001 From: Oxymoron Date: Sat, 22 Jul 2017 16:29:33 -0500 Subject: [PATCH] Corrected more mispellings of the word --- plugins/hmailserver-change-password/index.php | 2 +- plugins/ispconfig-change-password/index.php | 4 ++-- plugins/ispmail-change-password/index.php | 4 ++-- plugins/ldap-change-password/index.php | 2 +- plugins/ldap-contacts-suggestions/index.php | 2 +- plugins/mailcow-change-password/index.php | 4 ++-- plugins/postfixadmin-change-password/index.php | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) 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 '';