Skip to content

Commit

Permalink
Merge branch '2.0.18' of github.com:vanillaforums/Garden into 2.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
linc committed Nov 14, 2011
2 parents e3146b3 + ad15065 commit 4576e45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/Tagging/class.tagging.plugin.php
Expand Up @@ -12,7 +12,7 @@
$PluginInfo['Tagging'] = array(
'Name' => 'Tagging',
'Description' => 'Allow tagging of discussions.',
'Version' => '1.1',
'Version' => '1.1p1',
'SettingsUrl' => '/dashboard/settings/tagging',
'SettingsPermission' => 'Garden.Settings.Manage',
'Author' => "Mark O'Sullivan",
Expand Down Expand Up @@ -376,7 +376,7 @@ public function PostController_BeforeFormButtons_Handler($Sender) {
->From('TagDiscussion td')
->Join('Tag t', 'td.TagID = t.TagID')
->Where('td.DiscussionID', GetValue('DiscussionID', $Discussion))
->Where('t.Type', '')
->Where("coalesce(t.Type, '')", '')
->Get()->ResultArray();

$Tags = ConsolidateArrayValuesByKey($Tags, 'Name');
Expand Down

0 comments on commit 4576e45

Please sign in to comment.