Skip to:
Content

BuddyPress.org

Changeset 3223


Ignore:
Timestamp:
08/29/2010 12:19:26 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Better LDAP support. Fixes #2515. Props sorich87.

Location:
branches/1.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-activity/bp-activity-filters.php

    r3145 r3223  
    103103    include_once( ABSPATH . WPINC . '/registration.php' );
    104104
    105     $pattern = '/[@]+([A-Za-z0-9-_]+)/';
     105    $pattern = '/[@]+([A-Za-z0-9-_\.]+)/';
    106106    preg_match_all( $pattern, $content, $usernames );
    107107
  • branches/1.2/bp-activity/bp-activity-notifications.php

    r3211 r3223  
    55
    66    /* Scan for @username strings in an activity update. Notify each user. */
    7     $pattern = '/[@]+([A-Za-z0-9-_]+)/';
     7    $pattern = '/[@]+([A-Za-z0-9-_\.]+)/';
    88    preg_match_all( $pattern, $content, $usernames );
    99
  • branches/1.2/bp-groups/bp-groups-notifications.php

    r3211 r3223  
    244244
    245245    /* Scan for @username strings in an activity update. Notify each user. */
    246     $pattern = '/[@]+([A-Za-z0-9-_]+)/';
     246    $pattern = '/[@]+([A-Za-z0-9-_\.]+)/';
    247247    preg_match_all( $pattern, $content, $usernames );
    248248
Note: See TracChangeset for help on using the changeset viewer.