Skip to content

Commit

Permalink
...and fix variable name. I think I need to go back to bed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Oct 6, 2014
1 parent 77f6715 commit 2e0a136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -1602,10 +1602,10 @@ public function moveMessage($folderid, array $ids, $newfolderid)

$parts = $this->_parseFolderId($folderid);
if (is_array($parts)) {
$class = $parts[self::FOLDER_PART_CLASS];
$folder_class = $parts[self::FOLDER_PART_CLASS];
$folder_id = $parts[self::FOLDER_PART_ID];
} else {
$class = $parts;
$folder_class = $parts;
$folder_id = null;
}

Expand Down

0 comments on commit 2e0a136

Please sign in to comment.