You appear to be a bot. Output may be restricted
Description
Implement "edit_user_profile_update" for oik-user
Usage
oiku_edit_user_profile_update( $ID );
Parameters
- $ID
- ( mixed ) required –
Returns
voidSource
File name: oik-user/admin/oik-user.phpLines:
1 to 10 of 10
function oiku_edit_user_profile_update( $ID ) { bw_trace2(); $option = "bw_options"; $options = bw_get_user_meta( $ID, $option ); $new_options = bw_array_get( $_REQUEST, $option, null ); if ( $new_options ) { $new_options = oik_set_latlng( $new_options ); bw_update_user_meta( $ID, $option, $new_options, $options ); } }View on GitHub