Skip to content

Commit

Permalink
Remove extra parenthesis level.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Aug 14, 2015
1 parent 82e317c commit 950cf60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mnemo/lib/Driver/Kolab.php
Expand Up @@ -318,7 +318,7 @@ public function synchronize($token = false)
{
$data = $this->_getData(true);
$last_token = $GLOBALS['session']->get('mnemo', 'kolab/token');
if (empty($token) || (empty($last_token) || $last_token != $token)) {
if (empty($token) || empty($last_token) || $last_token != $token) {
$GLOBALS['session']->set('mnemo', 'kolab/token', $token);
$data->synchronize();
}
Expand Down

0 comments on commit 950cf60

Please sign in to comment.