Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/12/2009 12:57:13 PM (16 years ago)
Author:
sambauers
Message:

branches 0.9: Remove security bug/annoyance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.9/bb-includes/registration-functions.php

    r1888 r2358  
    5353    global $bbdb;
    5454    $key = sanitize_user( $key, true );
    55     if ( empty( $key ) )
     55    if ( empty( $key ) || !is_string( $key ) )
    5656        bb_die(__('Key not found.'));
    5757    if ( !$user_id = $bbdb->get_var( $bbdb->prepare( "SELECT user_id FROM $bbdb->usermeta WHERE meta_key = 'newpwdkey' AND meta_value = %s", $key ) ) )
Note: See TracChangeset for help on using the changeset viewer.