suanand / pagure

Forked from pagure 6 years ago
Clone

7b766af fix(user_settings): unable to change default email

1 file Authored by wombelix a year ago, Committed by ngompa a year ago,
    fix(user_settings): unable to change default email
    
    If more then two email addresses are defined in the user settings, it was not possible to change the default address to one of those additional addresses.
    This was caused by the frontend, all addresses got the same html 'form-id', that way always the first one was submitted when clicking the submit button, independent of the actual selected email address.
    Resolved by adding a random number as suffix to the 'form-id' of each email address, that way there are unique and the default mail address can be changed even with more then two assigned addresses.
    
    Fixes: https://pagure.io/pagure/issue/5327
    Fixes: https://pagure.io/pagure/issue/5338