Changeset 833716
- Timestamp:
- 01/06/2014 08:49:47 AM (12 years ago)
- Location:
- 6scan-protection/trunk
- Files:
-
- 2 edited
-
admin/includes/common.php (modified) (1 diff)
-
modules/signatures/loginsec.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
6scan-protection/trunk/admin/includes/common.php
r829751 r833716 4 4 die( 'No direct access allowed' ); 5 5 6 define ( 'SIXSCAN_VERSION' , '3.0.5. 3' );6 define ( 'SIXSCAN_VERSION' , '3.0.5.4' ); 7 7 define ( 'SIXSCAN_HTACCESS_VERSION' , '1' ); 8 8 -
6scan-protection/trunk/modules/signatures/loginsec.php
r652986 r833716 8 8 9 9 /* Filter on error, that is displayed to user when authentication failed */ 10 add_filter( 'login_errors' , sixscan_signatures_loginsec_fault_message);10 add_filter( 'login_errors' , 'sixscan_signatures_loginsec_fault_message' ); 11 11 12 12 /* User authorization was completed successfully */ 13 add_action( 'set_current_user' , sixscan_signatures_loginsec_login_success);13 add_action( 'set_current_user' , 'sixscan_signatures_loginsec_login_success' ); 14 14 15 15 /* Action on authentication attempt */ 16 add_filter( 'authenticate' , sixscan_signatures_loginsec_analyze , 20 , 3 ); 17 16 add_filter( 'authenticate' , 'sixscan_signatures_loginsec_analyze' , 20 , 3 ); 18 17 } 19 18
Note: See TracChangeset
for help on using the changeset viewer.