Changeset 1985
- Timestamp:
- 10/17/2015 05:04:39 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r1978 r1985 12 12 if project_slug == 'core': 13 13 notifications_enabled = 1 14 project_name = 'WordPress' 14 15 15 16 if project_slug == 'bbpress' : 16 17 support_link = '//bbpress.org/forums/' 18 project_name = 'bbPress' 17 19 elif project_slug == 'buddypress' : 18 20 support_link = '//buddypress.org/support/topics/' 21 project_name = 'BuddyPress' 19 22 else : 20 23 support_link = '//wordpress.org/support/' … … 118 121 </py:choose> 119 122 </div> 120 <py:if test="project_slug == 'core'">123 <py:if test="project_slug in ['core', 'bbpress', 'buddypress']"> 121 124 <div class="newticket-instructions"> 122 <p><strong>This form is for reporting bugs in WordPress.</strong> Here are some questions and tips to help you write a great bug report:</p>125 <p><strong>This form is for reporting bugs in ${project_name}.</strong> Here are some questions and tips to help you write a great bug report:</p> 123 126 <ul> 124 <li>Are you using either the latest version of WordPress, or the latest development version? If not, please update first.</li>127 <li>Are you using either the latest version of ${project_name}, or the latest development version? If not, please update first.</li> 125 128 <li>What steps should be taken to consistently reproduce the problem?</li> 126 129 <li>Does the problem occur even when you deactivate all plugins and use the default theme?</li>
Note: See TracChangeset
for help on using the changeset viewer.