Events Made Easy Forums Bug fixed or feature request implemented Undefined variable: result in people.php

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #59191
    Anonymous
    Inactive

    function eme_get_person_by_wp_id($wp_id) {
    global $wpdb;
    $people_table = $wpdb->prefix.PEOPLE_TBNAME;
    $user_info = get_userdata($result[‘wp_id’]);

    $result is undefined
    The following seems to solve the problem

    $user_info = get_userdata($wp_id);

    #59193
    Franky
    Keymaster

    That is indeed the correct fix, thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top