Changeset 5563 for trunk/src/templates/default/bbpress/form-reply.php
- Timestamp:
- 11/11/2014 05:25:09 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-reply.php
r5561 r5563 34 34 35 35 <div class="bbp-template-notice"> 36 <p><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></p> 36 <ul> 37 <li><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></li> 38 </ul> 37 39 </div> 38 40 … … 42 44 43 45 <div class="bbp-template-notice"> 44 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p> 46 <ul> 47 <li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li> 48 </ul> 45 49 </div> 46 50 … … 182 186 <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply"> 183 187 <div class="bbp-template-notice"> 184 <p><?php printf( __( 'The topic ‘%s’ is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></p> 188 <ul> 189 <li><?php printf( __( 'The topic ‘%s’ is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></li> 190 </ul> 185 191 </div> 186 192 </div> … … 190 196 <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply"> 191 197 <div class="bbp-template-notice"> 192 <p><?php printf( __( 'The forum ‘%s’ is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></p> 198 <ul> 199 <li><?php printf( __( 'The forum ‘%s’ is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></li> 200 </ul> 193 201 </div> 194 202 </div> … … 198 206 <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply"> 199 207 <div class="bbp-template-notice"> 200 <p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p> 208 <ul> 209 <li><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></li> 210 </ul> 201 211 </div> 202 212 </div> … … 208 218 </div> 209 219 210 <?php endif; ?>220 <?php endif;
Note: See TracChangeset
for help on using the changeset viewer.