############################################################## ## MOD Title: Caps Lock Warning ## MOD Author: N@stY < info@h2k.nl > (Dimirti) http://www.h2k.nl ## MOD Description: This small Mod will let the user know his Caps Lock is on when he enters his password. ## MOD Version: 1.1.0 ## ## Installation Level: Easy ## Installation Time: 5 minutes ## Included Files: None ## Files To Edit: 6 ## includes/page_header.php ## language/lang_english/lang_main.php ## templates/subSilver/overall_header.tpl ## templates/subSilver/login_body.tpl ## templates/subSilver/index_body.tpl ## templates/subSilver/profile_add_body.tpl ## ############################################################## ## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ## in our MOD-Database, located at: http://www.phpbb.com/mods/ ############################################################## ## Author Notes: Based on the javascript "Check Cap Locks" ## http://javascript.internet.com/forms/check-cap-locks.html ############################################################## ## MOD History: ## ## 2004-11-28 - Version 1.1.0 ## - Added the login form on the index. And the register page.. ## 2004-11-27 - Version 1.0.0 ## - First Stable release. ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]------------------------------------------ # includes/page_header.php # #-----[ FIND ]------------------------------------------ # 'L_USERNAME' => $lang['Username'], # #-----[ BEFORE, ADD ]------------------------------------------ # 'L_CAPS_WARNING' => $lang['Caps_Warning'], # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main.php # #-----[ FIND ]------------------------------------------ # ?> # #-----[ BEFORE, ADD ]------------------------------------------ # // Begin Caps Lock Warning MOD $lang['Caps_Warning'] = 'Caps Lock is On.\n\nTo prevent entering your password incorrectly,\nyou should press Caps Lock to turn it off.'; // End Caps Lock Warning MOD # #-----[ OPEN ]------------------------------------------ # templates/subSilver/overall_header.tpl # #-----[ FIND ]------------------------------------------ # # #-----[ BEFORE, ADD ]------------------------------------------ # # #-----[ OPEN ]------------------------------------------ # templates/subSilver/login_body.tpl # #-----[ FIND ]------------------------------------------ # # #-----[ REPLACE WITH ]------------------------------------------ # # #-----[ OPEN ]------------------------------------------ # templates/subSilver/index_body.tpl # #-----[ FIND ]------------------------------------------ # # #-----[ REPLACE WITH ]------------------------------------------ # # #-----[ OPEN ]------------------------------------------ # templates/subSilver/profile_add_body.tpl # #-----[ FIND ]------------------------------------------ # # #-----[ REPLACE WITH ]------------------------------------------ # # #-----[ FIND ]------------------------------------------ # # #-----[ REPLACE WITH ]------------------------------------------ # # # -----[ That's All Folks! ]----------------------------- # # EoM