Code: Select all
#
#-----[ FIND ]---------------------------------------------------
#
else if ( ( $mode == 'user' && ( isset($HTTP_POST_VARS['username'])
#
#-----[ REPLACE WITH ]---------------------------------------------------
#
else if ( ( $mode == 'user' && ( isset($HTTP_POST_VARS['user_name'])
Code: Select all
else if ( ( $mode == 'user' && ( isset($HTTP_POST_VARS['username']) || $user_id ) ) || ( $mode == 'group' && $group_id ) )
MennoniteHobbit wrote: FINDs can be partial finds, so in this case, I believe the only thing you'd change is username to user_name.![]()
Code: Select all
#
#-----[ FIND ]---------------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="username"
#
#-----[ REPLACE WITH ]---------------------------------------------------
#
$s_hidden_fields .= '<input type="hidden" name="user_name"
Code: Select all
$s_hidden_fields .= '<input type="hidden" name="username" value="' . str_replace("\"", """, $username) . '" />';
First: What about passwords? Does this mod fix them too.
Second: Is it compatible with this mod? If not, could you help me to make it compatible?