Skip to content

Commit

Permalink
Fix variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Dec 8, 2014
1 parent a00ff7d commit 5c168ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php
Expand Up @@ -958,7 +958,7 @@ protected function _buildMailMessage(
// Message importance. First try X-Priority, then Importance since
// Outlook sends the later.
if ($priority = $imap_message->getHeaders()->getValue('X-priority')) {
$priorty = preg_replace('/\D+/', '', $priority);
$priority = preg_replace('/\D+/', '', $priority);
} else {
$priority = $imap_message->getHeaders()->getValue('Importance');
}
Expand Down

0 comments on commit 5c168ee

Please sign in to comment.