UpdateTable of ChangePassword Page

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
mishanian
User
Posts: 125

UpdateTable of ChangePassword Page

Post by mishanian »

Hi,
how can I change updateTable of change password ?

I used the below call but it is not working

function User_ChangePassword($rs, $usr, $oldpwd, &$newpwd) {
    $table_name="users";
    $this->UpdateTable = $table_name;
    return TRUE;
}

arbei
User
Posts: 9384

Post by arbei »

If you are a registered user of v2024, you better seek help from support.


mishanian
User
Posts: 125

Post by mishanian »

The support changed the template. now you can use first approach but in Page Load function:

    $table_name="users";
    $this->UpdateTable = $table_name;

Post Reply