Changeset 1725

Show
Ignore:
Timestamp:
08/20/08 12:08:12 (5 months ago)
Author:
lmajano
Message:

Reinitpass does not exist as a url action. Reverting.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • coldbox/trunk/system/coldbox.cfc

    r1724 r1725  
    319319                        if ( application.cbController.settingExists("ReinitPassword") ){ 
    320320                                reinitPass = application.cbController.getSetting("ReinitPassword"); 
    321                         } 
    322                          
     321                        }                        
    323322                        /* Verify the reinit key is passed */ 
    324323                        if ( structKeyExists(url,"fwreinit") or structKeyExists(form,"fwreinit") ){ 
     
    330329                                else{ 
    331330                                        /* Get the incoming pass from form or url */ 
    332                                         if( structKeyExists(form,"reinitPass") ){ 
    333                                                 incomingPass = form.reinitPass
     331                                        if( structKeyExists(form,"fwreinit") ){ 
     332                                                incomingPass = form.fwreinit
    334333                                        } 
    335                                         else{ if(structKeyExists(url,"reinitPass")){ 
    336                                                         incomingPass = url.reinitPass; 
    337                                                   } 
    338                                                   else{ 
    339                                                         incomingPass = ""; 
    340                                                   }      
     334                                        else{ 
     335                                                incomingPass = url.fwreinit; 
    341336                                        } 
    342337                                        /* Compare the passwords */ 

Copyright 2006 ColdBox Framework by Luis Majano