Cleanup: use safe boolean comparisons

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
VirtualTam 2017-01-06 18:54:29 +01:00 committed by VirtualTam
parent 7418f7cb60
commit ee6f4b64a9
4 changed files with 6 additions and 4 deletions

View File

@ -122,7 +122,7 @@ function get_http_response($url, $timeout = 30, $maxBytes = 4194304)
$content = substr($response, $headSize);
$headers = array();
foreach (preg_split('~[\r\n]+~', $rawHeadersLastRedir) as $line) {
if (empty($line) or ctype_space($line)) {
if (empty($line) || ctype_space($line)) {
continue;
}
$splitLine = explode(': ', $line, 2);

View File

@ -89,7 +89,9 @@ function count_private($links)
{
$cpt = 0;
foreach ($links as $link) {
$cpt = $link['private'] == true ? $cpt + 1 : $cpt;
if ($link['private']) {
$cpt += 1;
}
}
return $cpt;

View File

@ -69,7 +69,7 @@ class Updater
return $updatesRan;
}
if ($this->methods == null) {
if ($this->methods === null) {
throw new UpdaterException('Couldn\'t retrieve Updater class methods.');
}

View File

@ -204,7 +204,7 @@ function setup_login_state($conf)
}
// If session does not exist on server side, or IP address has changed, or session has expired, logout.
if (empty($_SESSION['uid'])
|| ($conf->get('security.session_protection_disabled') == false && $_SESSION['ip'] != allIPs())
|| ($conf->get('security.session_protection_disabled') === false && $_SESSION['ip'] != allIPs())
|| time() >= $_SESSION['expires_on'])
{
logout();