Mercurial > planet-ubiquity-redesign
changeset 28:8df874718919
Fixed author filter regexp bug
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Tue, 03 Mar 2009 06:51:43 -0800 |
parents | 43da06d64c2d |
children | 31fa3c03cda3 |
files | about-mozilla.js |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/about-mozilla.js Mon Mar 02 22:28:57 2009 -0800 +++ b/about-mozilla.js Tue Mar 03 06:51:43 2009 -0800 @@ -69,7 +69,7 @@ var author = this.author; var authorFilters = [ // Filter out e.g. "Robert Jones <robert@jones.com>" - /(.+)\s+<.+>/, + /(.+)\s*<.+>/, // Filter out e.g. "rob...@jones.com (Robert Jones)" /.+\.\.\.@.+\s+\((.+)\)/ ];