Changeset 1725
- Timestamp:
- 08/20/08 12:08:12 (5 months ago)
- Files:
-
- coldbox/trunk/system/coldbox.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/coldbox.cfc
r1724 r1725 319 319 if ( application.cbController.settingExists("ReinitPassword") ){ 320 320 reinitPass = application.cbController.getSetting("ReinitPassword"); 321 } 322 321 } 323 322 /* Verify the reinit key is passed */ 324 323 if ( structKeyExists(url,"fwreinit") or structKeyExists(form,"fwreinit") ){ … … 330 329 else{ 331 330 /* 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; 334 333 } 335 else{ if(structKeyExists(url,"reinitPass")){ 336 incomingPass = url.reinitPass; 337 } 338 else{ 339 incomingPass = ""; 340 } 334 else{ 335 incomingPass = url.fwreinit; 341 336 } 342 337 /* Compare the passwords */
