Skip to content

Commit

Permalink
Ticket #4797 - Need Change Password feature always asks to change pas…
Browse files Browse the repository at this point in the history
…sword.
  • Loading branch information
AntonLV committed Sep 11, 2024
1 parent 1867f0b commit 99eb1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/sql/system.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,7 @@ CREATE TABLE `sys_accounts` (
`receive_updates` tinyint(4) NOT NULL DEFAULT '1',
`receive_news` tinyint(4) NOT NULL DEFAULT '1',
`password` varchar(40) NOT NULL,
`password_changed` int(11) NOT NULL DEFAULT '0',
`salt` varchar(10) NOT NULL,
`role` tinyint(4) NOT NULL DEFAULT '1',
`lang_id` int(10) unsigned NOT NULL DEFAULT '0',
Expand All @@ -1378,7 +1379,6 @@ CREATE TABLE `sys_accounts` (
`referred` varchar(255) NOT NULL DEFAULT '',
`login_attempts` tinyint(4) NOT NULL DEFAULT '0',
`locked` tinyint(4) NOT NULL DEFAULT '0',
`password_changed` int(11) NOT NULL DEFAULT '0',
`active` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`(191)),
Expand Down

0 comments on commit 99eb1f8

Please sign in to comment.