Skip to content

Commit

Permalink
Clarified priority errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SL-Gundam committed Dec 16, 2016
1 parent 6ef4cd3 commit 79fb81c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/mail_api.php
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ private function parse_content( &$p_msg )
}
else
{
$this->custom_error( 'Unknown priority encountered (' . strtolower( $t_mp->priority() ) . '). Falling back to default priority', FALSE );
$this->custom_error( 'Unknown email priority encountered (' . strtolower( $t_mp->priority() ) . '). Falling back to default priority', FALSE );
$t_email[ 'Priority' ] = FALSE;
}

Expand Down Expand Up @@ -1702,7 +1702,7 @@ private function verify_priority( $p_priority )
}
else
{
$this->custom_error( 'Unknown priority encountered (' . $p_priority . '). Falling back to default priority', FALSE );
$this->custom_error( 'Unknown MantisBT priority encountered (' . $p_priority . '). Falling back to default priority', FALSE );
}
}

Expand Down

0 comments on commit 79fb81c

Please sign in to comment.