[ticket/15171] Replace all BBCode templates by default

PHPBB3-15171
This commit is contained in:
Rubén Calvo 2017-10-01 17:41:08 +02:00
parent 78610f0406
commit 508caa9bd4
3 changed files with 13 additions and 13 deletions

View file

@ -1355,18 +1355,18 @@ class acp_styles
} }
// Hardcoded template bitfield to add for new templates // Hardcoded template bitfield to add for new templates
$default_bitfield = '1111111111111';
$bitfield = new bitfield(); $bitfield = new bitfield();
$bitfield->set(0); for ($i = 0; $i < strlen($default_bitfield); $i++)
$bitfield->set(1); {
$bitfield->set(2); if($default_bitfield[$i] == '1')
$bitfield->set(3); {
$bitfield->set(4); $bitfield->set($i);
$bitfield->set(8); }
$bitfield->set(9); }
$bitfield->set(11);
$bitfield->set(12); return $bitfield->get_base64();
$value = $bitfield->get_base64();
return $value;
} }
} }

View file

@ -477,7 +477,7 @@ INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order)
INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', 10); INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', 10);
# -- phpbb_styles # -- phpbb_styles
INSERT INTO phpbb_styles (style_name, style_copyright, style_active, style_path, bbcode_bitfield, style_parent_id, style_parent_tree) VALUES ('prosilver', '&copy; phpBB Limited', 1, 'prosilver', 'kNg=', 0, ''); INSERT INTO phpbb_styles (style_name, style_copyright, style_active, style_path, bbcode_bitfield, style_parent_id, style_parent_tree) VALUES ('prosilver', '&copy; phpBB Limited', 1, 'prosilver', '//g=', 0, '');
# -- Forums # -- Forums
INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts_approved, forum_posts_unapproved, forum_posts_softdeleted, forum_topics_approved, forum_topics_unapproved, forum_topics_softdeleted, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('{L_FORUMS_FIRST_CATEGORY}', '', 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, ''); INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts_approved, forum_posts_unapproved, forum_posts_softdeleted, forum_topics_approved, forum_topics_unapproved, forum_topics_softdeleted, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('{L_FORUMS_FIRST_CATEGORY}', '', 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, '');

View file

@ -25,7 +25,7 @@ style_version = 3.2.1
phpbb_version = 3.2.1 phpbb_version = 3.2.1
# Defining a different template bitfield # Defining a different template bitfield
# template_bitfield = lNg= # template_bitfield = //g=
# Parent style # Parent style
# Set value to empty or to this style's name if this style does not have a parent style # Set value to empty or to this style's name if this style does not have a parent style