frumbert / wp2moodle--wordpress-

Wordpress to Moodle pass through authentication plugin (wordpress end)
27 stars 23 forks source link

No-firstname No-lastname #7

Closed ikito closed 9 years ago

ikito commented 10 years ago

All installed and working ok, No firstname or lastname is sent to Moodle. saved as: No-firstname and No-lastname. Array at wp2moodle_generate_hyperlink function is wrong.

must be: "firstname" => $user->first_name, // first name "lastname" => $user->last_name, // last name

frumbert commented 9 years ago

According to http://codex.wordpress.org/Function_Reference/get_currentuserinfo, it's $current_user->user_firstname. first_name is the name of the database field.