Skip to content

Commit

Permalink
Syntax error in condition on count
Browse files Browse the repository at this point in the history
  • Loading branch information
hieblmedia committed Jan 2, 2015
1 parent a52fd0f commit b5563ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static function canUpload($file, $err = '')
);
$explodedFileName = explode('.', $file['name']);

if (count($explodedFileName > 2))
if (count($explodedFileName) > 2)
{
foreach ($executable as $extensionName)
{
Expand Down

0 comments on commit b5563ee

Please sign in to comment.