Skip to content

Commit

Permalink
Fix parameter order.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Oct 31, 2013
1 parent 9ace9cc commit be95afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -563,7 +563,7 @@ protected function _parseFolderId($id)
return Horde_ActiveSync::CLASS_EMAIL;
}
} else {
$parts = explode($id, ':', 2);
$parts = explode(':', $id, 2);
if (count($parts) == 2) {
return $parts;
}
Expand Down

0 comments on commit be95afe

Please sign in to comment.