Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
Syntax error fixes, missing ; and )
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Sapriza committed Jun 7, 2013
1 parent a45213c commit e6f885e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/DIAGNOSTICS.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,11 @@ class Module {
{
return array(
'Check PHP extensions' => function(){
if (!extension_loaded('mbstring') {
if (!extension_loaded('mbstring')) {
return new Failure(
'MB string is required for this module to work',
get_loaded_extensions()
)
);
}

if (!extension_loaded('apc')) {
Expand Down

0 comments on commit e6f885e

Please sign in to comment.