Changeset 3223
- Timestamp:
- 08/29/2010 12:19:26 AM (15 years ago)
- Location:
- branches/1.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-activity/bp-activity-filters.php
r3145 r3223 103 103 include_once( ABSPATH . WPINC . '/registration.php' ); 104 104 105 $pattern = '/[@]+([A-Za-z0-9-_ ]+)/';105 $pattern = '/[@]+([A-Za-z0-9-_\.]+)/'; 106 106 preg_match_all( $pattern, $content, $usernames ); 107 107 -
branches/1.2/bp-activity/bp-activity-notifications.php
r3211 r3223 5 5 6 6 /* Scan for @username strings in an activity update. Notify each user. */ 7 $pattern = '/[@]+([A-Za-z0-9-_ ]+)/';7 $pattern = '/[@]+([A-Za-z0-9-_\.]+)/'; 8 8 preg_match_all( $pattern, $content, $usernames ); 9 9 -
branches/1.2/bp-groups/bp-groups-notifications.php
r3211 r3223 244 244 245 245 /* Scan for @username strings in an activity update. Notify each user. */ 246 $pattern = '/[@]+([A-Za-z0-9-_ ]+)/';246 $pattern = '/[@]+([A-Za-z0-9-_\.]+)/'; 247 247 preg_match_all( $pattern, $content, $usernames ); 248 248
Note: See TracChangeset
for help on using the changeset viewer.