File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
define ('TP_VERSION ' , '3.1.2 ' );
30
- define ("UPGRADE_MIN_DATE " , "1731422875 " );
30
+ define ("UPGRADE_MIN_DATE " , "1732264740 " );
31
31
define ('TP_VERSION_MINOR ' , '166 ' );
32
32
define ('TP_TOOL_NAME ' , 'Teampass ' );
33
33
define ('TP_ONE_DAY_SECONDS ' , 86400 );
Original file line number Diff line number Diff line change 607
607
// Remove unused no_bad_attempts field
608
608
try {
609
609
$ alter_table_query = "
610
- ALTER TABLE ` " . $ var [ ' tbl_prefix ' ] . "users`
610
+ ALTER TABLE ` " . $ pre . "users`
611
611
DROP COLUMN `no_bad_attempts` " ;
612
612
mysqli_begin_transaction ($ db_link );
613
613
mysqli_query ($ db_link , $ alter_table_query );
620
620
// Table used to store authentication failures
621
621
mysqli_query (
622
622
$ db_link ,
623
- "CREATE TABLE IF NOT EXISTS ` " . $ var [ ' tbl_prefix ' ] . "auth_failures` (
623
+ "CREATE TABLE IF NOT EXISTS ` " . $ pre . "auth_failures` (
624
624
`id` int(12) NOT NULL AUTO_INCREMENT,
625
625
`source` ENUM('login', 'remote_ip') NOT NULL,
626
626
`value` VARCHAR(500) NOT NULL,
You can’t perform that action at this time.
0 commit comments