Changeset 3248542
- Timestamp:
- 02/28/2025 02:21:10 PM (13 months ago)
- Location:
- admintosh
- Files:
-
- 2 edited
-
tags/1.1.1/inc/Login_History.php (modified) (2 diffs)
-
trunk/inc/Login_History.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admintosh/tags/1.1.1/inc/Login_History.php
r3248536 r3248542 18 18 add_action('wp_logout', [ $this, 'logout_activity_track' ], 10, 2); 19 19 20 if( get_option('admintosh_lh_database_table') != 'yes ' ) {20 if( get_option('admintosh_lh_database_table') != 'yes_111' ) { 21 21 $this->create_database_table(); 22 22 } … … 138 138 require_once ABSPATH . 'wp-admin/includes/upgrade.php'; 139 139 dbDelta( $sql ); 140 update_option( 'admintosh_lh_database_table', 'yes ' );140 update_option( 'admintosh_lh_database_table', 'yes_111' ); 141 141 } 142 142 -
admintosh/trunk/inc/Login_History.php
r3248536 r3248542 18 18 add_action('wp_logout', [ $this, 'logout_activity_track' ], 10, 2); 19 19 20 if( get_option('admintosh_lh_database_table') != 'yes ' ) {20 if( get_option('admintosh_lh_database_table') != 'yes_111' ) { 21 21 $this->create_database_table(); 22 22 } … … 138 138 require_once ABSPATH . 'wp-admin/includes/upgrade.php'; 139 139 dbDelta( $sql ); 140 update_option( 'admintosh_lh_database_table', 'yes ' );140 update_option( 'admintosh_lh_database_table', 'yes_111' ); 141 141 } 142 142
Note: See TracChangeset
for help on using the changeset viewer.