Skip to content

Commit

Permalink
Parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Nov 10, 2013
1 parent 65d7263 commit 0ca9941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Core/lib/Horde/Core/ActiveSync/Connector.php
Expand Up @@ -1043,7 +1043,7 @@ public function changeFolder($class, $id, $name)

case Horde_ActiveSync::CLASS_CONTACTS:
// @todo remove hasMethod check
if (!$registry->hasMethod('contacts/updateAddressbook') {
if (!$registry->hasMethod('contacts/updateAddressbook')) {
throw new Horde_ActiveSync_Exception(
'Updating addressbooks not supported by the contacts API.',
Horde_ActiveSync::UNSUPPORTED
Expand All @@ -1054,7 +1054,7 @@ public function changeFolder($class, $id, $name)

case Horde_ActiveSync::CLASS_NOTES:
// @todo remove hasMethod check
if (!$registry->hasMethod('notes/updateNotepad') {
if (!$registry->hasMethod('notes/updateNotepad')) {
throw new Horde_ActiveSync_Exception(
'Updating notepads not supported by the notes API.',
Horde_ActiveSync::UNSUPPORTED
Expand Down

0 comments on commit 0ca9941

Please sign in to comment.