Remove trailing whitespace

This commit is contained in:
Kienan Stewart 2019-12-18 17:07:29 -05:00 committed by Camille Lafitte
parent 95efdafd3d
commit c95dd63c26
1 changed files with 4 additions and 4 deletions

View File

@ -161,13 +161,13 @@ class m_piwik {
if ($api_data !== FALSE) {
$api_data = $api_data[0]; // Data is in the first column
foreach ($this->alternc_users AS $key=>$user) {
if (!array_key_exists($user, $api_data)) {
$api_data->$user = 'noaccess';
}
if (!array_key_exists($user, $api_data)) {
$api_data->$user = 'noaccess';
}
}
return $api_data;
}
else return FALSE;
else return FALSE;
}