I have installed and checked this hack, works perfectly.
Except for your install/uninstall code, which should be replaced by this:
PHP Code:
$db->hide_errors();
$db->query_write("ALTER TABLE `" . TABLE_PREFIX . "thread` ADD `description` VARCHAR( 100 ) NOT NULL");
$db->show_errors();
PHP Code:
$db->hide_errors();
$db->query_write("ALTER TABLE `" . TABLE_PREFIX . "thread` DROP `description`");
$db->show_errors();
Note:
1. No semicolon at the end of query. That sometimes causes errors.
2.
query replaced with
query_write
3. No reason to create an array for only one query.
4. hide_errors and show_errors to avoid unnecessary error display.
After that, "Beta Stage" marker can be safely removed!
Couple of suggestions:
1. Show threaddescription is showthread and archive.
2. Show threaddescription in search results, for both thread mode and post mode.
3. Add ajax description edit in threadbit.
4. Add the field to editpost when editing first post in advanced mode.
5. "description of" is a grammatical error in the context. Should be "description for".
Cheers!