Changeset 274
- Timestamp:
- 05/28/07 13:28:34
- Files:
-
- FreakAuth/trunk/www/system/application/config/freakauth_light.php (modified) (3 diffs)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/change_password.php (deleted)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password.php (deleted)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms/change_password.php (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms/forgotten_password.php (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms/index.html (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms/login.php (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forms/register.php (added)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/login.php (deleted)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/register.php (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
FreakAuth/trunk/www/system/application/config/freakauth_light.php
r267 r274 350 350 // LOGIN 351 351 // The view to display the login form 352 $config['FAL_login_view'] = $config['FAL_template_dir'].'content/ login';352 $config['FAL_login_view'] = $config['FAL_template_dir'].'content/forms/login'; 353 353 354 354 // REGISTRATION 355 355 // view to display the user registration form 356 $config['FAL_register_view'] = $config['FAL_template_dir'].'content/ register';356 $config['FAL_register_view'] = $config['FAL_template_dir'].'content/forms/register'; 357 357 358 358 // view to display the successful registration information … … 367 367 // FORGOTTEN PASSWORD 368 368 // view to display the forgotten password form 369 $config['FAL_forgotten_password_view'] = $config['FAL_template_dir'].'content/for gotten_password';369 $config['FAL_forgotten_password_view'] = $config['FAL_template_dir'].'content/forms/forgotten_password'; 370 370 371 371 // view to display the successful forgotten password request … … 380 380 // CHANGE PASSWORD 381 381 // view to display the forgotten password form 382 $config['FAL_change_password_view'] = $config['FAL_template_dir'].'content/ change_password';382 $config['FAL_change_password_view'] = $config['FAL_template_dir'].'content/forms/change_password'; 383 383 384 384 // ERROR DELIMITERS
