-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Allow mailto-Links to begin with whitespaces
- Loading branch information
1 parent
c40c459
commit bd2e941
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,10 @@ public function emailTexts() { | |
'email address outside of link' => array( | ||
'Email [email protected] should not be replaced', | ||
'Email [email protected] should not be replaced' | ||
), | ||
'email address with space at the beginning' => array( | ||
'Email <a href="mailto: [email protected]">[email protected]</a>', | ||
'Email <a href="javascript:linkTo_UnCryptMailto(\'ithiOtmpbeat-rdb\', -15)">test (at) example.com</a>' | ||
) | ||
); | ||
} | ||
|