diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index aaf728848..fe665c332 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -26,6 +26,7 @@ - fixed: EMS Formatting (Badge Page) - fixed: Thingy fields list on view screen tab - fixed: Importing data into Thingy that has newlines embedded in fields + - fixed: Keywords field is not available in collaboration system post template 7.5.18 - fixed: Collateral Image Manager broken in Firefox 3 diff --git a/lib/WebGUI/Asset/Post.pm b/lib/WebGUI/Asset/Post.pm index 7adba8167..92bd5eecd 100644 --- a/lib/WebGUI/Asset/Post.pm +++ b/lib/WebGUI/Asset/Post.pm @@ -1372,6 +1372,12 @@ sub www_edit { } $var{meta_loop} = \@meta_loop; } + #keywords field + $var{'keywords.form'} = WebGUI::Form::text($session,{ + name => 'keywords', + value => $self->get('keywords'), + }); + $self->getThread->getParent->appendTemplateLabels(\%var); return $self->getThread->getParent->processStyle($self->processTemplate(\%var,$self->getThread->getParent->get("postFormTemplateId"))); } diff --git a/lib/WebGUI/Asset/Wobject/Collaboration.pm b/lib/WebGUI/Asset/Wobject/Collaboration.pm index b44929118..784c4f275 100644 --- a/lib/WebGUI/Asset/Wobject/Collaboration.pm +++ b/lib/WebGUI/Asset/Wobject/Collaboration.pm @@ -244,6 +244,7 @@ sub appendTemplateLabels { $var->{"views.label"} = $i18n->get("views"); $var->{'visitorName.label'} = $i18n->get("visitor"); $var->{"captcha_label"} = $i18n->get("captcha label"); + $var->{'keywords.label'} = $i18n->get('keywords label'); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/i18n/English/Asset_Collaboration.pm b/lib/WebGUI/i18n/English/Asset_Collaboration.pm index b045c6ffe..5d6ec4309 100644 --- a/lib/WebGUI/i18n/English/Asset_Collaboration.pm +++ b/lib/WebGUI/i18n/English/Asset_Collaboration.pm @@ -1646,6 +1646,11 @@ the Collaboration Asset, the user will be notified.|, context => q{Hover help for asset property}, }, + 'keywords label' => { + message => q|Keywords|, + lastUpdated => 1170543345, + }, + }; 1;