Changeset 310


Ignore:
Timestamp:
Feb 1, 2010, 12:02:40 PM (14 years ago)
Author:
gav
Message:

Fix small bug in AppCore controller changePassword function.
Introduced when authenticateService was replaced with authService.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/AppCoreController.groovy

    r307 r310  
    8383            if(params.confirmPass == params.pass) {
    8484                personInstance.pass = params.pass
    85                 personInstance.password = authenticateService.encodePassword(personInstance.pass)
     85                personInstance.password = authService.encodePassword(personInstance.pass)
    8686
    8787                if (!personInstance.hasErrors() && personInstance.save(flush: true)) {
Note: See TracChangeset for help on using the changeset viewer.