mirror of https://github.com/BOINC/boinc.git
Comment quoting
Added default quote settings to feature (DBOINCP-36)
This commit is contained in:
parent
4b6f7c05d8
commit
050d463881
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue