Comment quoting

Added default quote settings to feature

(DBOINCP-36)
This commit is contained in:
Tristan Olive 2013-10-22 07:55:47 -04:00
parent 4b6f7c05d8
commit 050d463881
2 changed files with 15 additions and 0 deletions

View File

@ -42,3 +42,4 @@ features[variable][] = "comment_form_location_forum"
features[variable][] = "comment_forum"
features[variable][] = "comment_preview_forum"
features[variable][] = "comment_subject_field_forum"
features[variable][] = "quote"

View File

@ -69,5 +69,19 @@ function discussion_forums_strongarm() {
$strongarm->value = '1';
$export['comment_subject_field_forum'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'quote';
$strongarm->value = array(
'node_types' => array(
'news' => 'news',
'forum' => 'forum',
),
'node_link_display' => 1,
'subject_required' => 0,
);
$export['quote'] = $strongarm;
return $export;
}