HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Changing the DateJumper plugin to work with DiscussionsGrid
This discussion is related to the DiscussionsGrid addon.

The following simple change in DateJumper will make it compatible with the DisussionGrid plugin, so if you want to use both, consider this change:
Change all two occurences of "beforeDiscussionName" to "BeforeDiscussionContent"
resulting in two lines like these:
public function discussionsController_BeforeDiscussionContent_handler($Sender, $args) { public function categoriesController_BeforeDiscussionContent_handler($Sender, $args) {
@Bleistivt -perhaps you can consider this change to the plugin regardless of whether DiscussionsGrid is active.
0
Comments
That would result in a naked
<li>
inside of another<li>
which is illegal. I changed it to a<div>
and implemented your suggestion.My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Great, thanks!