Corrected more mispellings of the word <extension>

This commit is contained in:
Oxymoron 2017-07-22 16:29:33 -05:00
parent 4b312a4f35
commit 3bc9c54039
7 changed files with 11 additions and 11 deletions

View file

@ -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 '';