Skip to content

Commit

Permalink
Merge pull request #1273 from ditorelo/1270
Browse files Browse the repository at this point in the history
Fixing boolean check for stats (Issue #1270)
  • Loading branch information
rjmackay committed Nov 4, 2013
2 parents 4023d45 + 9e8dd03 commit 1f4734b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/stats.php
Expand Up @@ -503,7 +503,7 @@ public function create_site( $sitename, $url)

$xml = simplexml_load_string(self::_curl_req($stat_url));

if($xml == false)
if ($xml === false)
{
return false;
}
Expand Down

0 comments on commit 1f4734b

Please sign in to comment.