Skip to content

Commit

Permalink
Merge pull request #24 from MatthiasDeWinter/master
Browse files Browse the repository at this point in the history
sensiolabs fix, strict comparison
  • Loading branch information
freekmurze committed Apr 17, 2015
2 parents 04a8ca3 + 5110c33 commit 40d70be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spatie/Glide/GlideServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function getSignKey($glideConfig)
return Config::get('app.key');
}

if ($glideConfig['useSecureURLs'] == true)
if ($glideConfig['useSecureURLs'] === true)
{
return Config::get('app.key');
}
Expand Down

0 comments on commit 40d70be

Please sign in to comment.