#496 closed enhancement (fixed)
convert Support/Resolved/Not Resolved a features into a plugin
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 0.8 | Priority: | normal |
Severity: | normal | Version: | 0.7.3 |
Component: | General - Administration | Keywords: | has-patch |
Cc: |
Description
http://bbpress.org/forums/topic/362
if the site is a forum just for discussion and is not a support forum, these options are redundant.
Attachments (4)
Change History (23)
#3
@
19 years ago
Attached the patch to implement the following
- add a option in the config file
- if the config is set to true show the resolution drop down in the topic template
- if the config is set to true add view unresolved topic option
#4
@
19 years ago
I think for .80 we should just scrap the support forum stuff entirely and make it a plugin.
#6
@
19 years ago
if we are removing this , should we keep the topic_resolved column in the topic table?
we can keep it and use it in the plugin..
any thoughts?
#7
@
19 years ago
- Milestone changed from 1.0 to 0.80
I was going to suggest using topic_meta to store that info. Queries will be a bit slower if we do that, though.
#8
@
19 years ago
- Keywords has-patch added
- Summary changed from Make the Support/Resolved/Not Resolved a feature selectable from site options to convert Support/Resolved/Not Resolved a features into a plugin
Patch added to remove all references to resolved and not resolved.
i have created a plugin with all (ALL) functionality that was in there. i will post it here soon.
besides the patch, the upgrade script will need to be updated to remove the topic_resolved column
#9
@
19 years ago
The support forum plugin is attached. Later we might add functionality to the plugin to add custom options.
#11
@
19 years ago
Verp nice catch, so1o :)
I'll work on the upgrade script. I think we should convert topic.topic_resolved into topicmeta "topic_resolved" to be more transparent to themes and other plugins that may already look at $topic->topic_resolved.
That as opposed to converting it to topicmeta "support_forum_resolved" as your plugin suggests.
Thoughts?
#13
@
19 years ago
question.. how does the system behave if i have a column named x and i add a metadata named x.. which shows up in the final output?
#16
@
19 years ago
line 281
bb_bb_update_topicmeta( $topic->topic_id, 'topic_resolved', $topic->topic_resolved );
should be
bb_update_topicmeta( $topic->topic_id, 'topic_resolved', $topic->topic_resolved );
shouldnt it?
references: