| 1 |
June 20, 2009
|
| 2 |
- Fix watchdog links to user edit page
|
| 3 |
|
| 4 |
May 29, 2009
|
| 5 |
- Drupal 6 updates
|
| 6 |
|
| 7 |
July 30, 2008
|
| 8 |
- Use smaller data types in MySQL schema
|
| 9 |
|
| 10 |
July 1, 2008
|
| 11 |
- Show login "never" instead of 1969 for new users
|
| 12 |
|
| 13 |
June 9, 2008
|
| 14 |
- Fix error message during cron jobs
|
| 15 |
|
| 16 |
May 19, 2008
|
| 17 |
- Strip HTML tags from email subjects
|
| 18 |
- Support PostgreSQL
|
| 19 |
|
| 20 |
July 16, 2007
|
| 21 |
- Add Romanian translation
|
| 22 |
|
| 23 |
May 9, 2007
|
| 24 |
- Add missing .info file for Drupal 5
|
| 25 |
|
| 26 |
May 6, 2007
|
| 27 |
- Drupal 5 port
|
| 28 |
- Included inactive_user.info
|
| 29 |
- Updated README.txt
|
| 30 |
|
| 31 |
May 10, 2006
|
| 32 |
- ported to 4.7
|
| 33 |
- included inactive_user.install
|
| 34 |
- removed inactive_user.mysql
|
| 35 |
- updated README.txt
|
| 36 |
|
| 37 |
September 14, 2004
|
| 38 |
- inactive_user.module:
|
| 39 |
o send proper texts
|
| 40 |
o handle account deletion w/o warning, if so configured
|
| 41 |
o implement _user hook for account deletion
|
| 42 |
o remove debug that used to display when _cron hook was executed
|
| 43 |
o PORTED to 4.5 (refer to earlier changelog entries if running with
|
| 44 |
older version of database)
|
| 45 |
- README:
|
| 46 |
o update text to highlight purpose of module
|
| 47 |
|
| 48 |
September 13, 2004
|
| 49 |
- inactive_user.module:
|
| 50 |
o actually use the customized email text if so configured
|
| 51 |
|
| 52 |
August 31, 2004
|
| 53 |
- inactive_user.mysql:
|
| 54 |
o new field for protected users
|
| 55 |
o added indexes
|
| 56 |
- inactive_user.module:
|
| 57 |
o option to not delete users that have created content
|
| 58 |
(deletion of these users would result in any nodes and/or comments that
|
| 59 |
they created to be inaccesible, even though they would remain in the
|
| 60 |
database)
|
| 61 |
o reorganize increasingly busy configuration screen
|
| 62 |
|
| 63 |
To upgrade from earlier version, execute the following in your MySQL database:
|
| 64 |
ALTER TABLE inactive_users ADD protected int(1) unsigned NOT NULL default '0';
|
| 65 |
|
| 66 |
August 30, 2004
|
| 67 |
- inactive_user.mysql:
|
| 68 |
o new fields for warning timestamps
|
| 69 |
- inactive_user.module:
|
| 70 |
o use of new timestamp fields to allow proper grace period after sending
|
| 71 |
a warning.
|
| 72 |
o general cleanup
|
| 73 |
|
| 74 |
To upgrade from earlier version, execute the following in your MySQL database:
|
| 75 |
ALTER TABLE inactive_users ADD warned_user_block_timestamp int(11) unsigned NOT NULL default '0';
|
| 76 |
ALTER TABLE inactive_users ADD warned_user_delete_timestamp int(11) unsigned NOT NULL default '0';
|
| 77 |
UPDATE inactive_users SET warned_user_block_timestamp = UNIX_TIMESTAMP() WHERE warned_user_block = 1;
|
| 78 |
UPDATE inactive_users SET warned_user_delete_timestamp = UNIX_TIMESTAMP() WHERE warned_user_delete = 1;
|
| 79 |
ALTER TABLE inactive_users DROP warned_user_block;
|
| 80 |
ALTER TABLE inactive_users DROP warned_user_delete;
|
| 81 |
|
| 82 |
August 29, 2004
|
| 83 |
- inactive_user.module:
|
| 84 |
o initial release for Drupal 4.4, under GPL license
|
| 85 |
o PORTED to 4.5
|