Skip to content

Commit

Permalink
Allow links in notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
barrykooij committed Apr 17, 2016
1 parent 4fbcded commit da47866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AdminNoticeHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private function parse_notices( &$collection ) {
$types = explode( ' ', $class_values[1][0] );

// notification message
$message = trim( strip_tags( $matches[2][0], '' ) );
$message = trim( strip_tags( $matches[2][0], '<a>' ) );

// add to notices
$this->notices[] = new Notification( $types, $message );
Expand Down

0 comments on commit da47866

Please sign in to comment.