4.2.0
What's new
- + ignore users #276
- + performance improvements in mix view
- ✓ i10n in contacts/<*> headers #277
- ✓ adds missing back-links in contact form
- ✓ cache prefix not set for default cache #278
- Δ switch thread cache from whole threads to thread-lines #275
Migration Notes
DB Changes
Note: If you use a table prefix you have to prepend it to the table name.
CREATE TABLE `user_ignores` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`blocked_user_id` int(11) DEFAULT NULL,
`timestamp` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
KEY `blocked_user_id` (`blocked_user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
ALTER TABLE `users` ADD `ignore_count` int(10) unsigned NOT NULL DEFAULT '0';