Changeset 5688 for trunk/src/templates/default/bbpress/form-anonymous.php
- Timestamp:
- 04/19/2015 04:27:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-anonymous.php
r5561 r5688 15 15 16 16 <fieldset class="bbp-form"> 17 <legend><?php ( bbp_is_topic_edit() || bbp_is_reply_edit() ) ? _e( 'Author Information', 'bbpress' ) :_e( 'Your information:', 'bbpress' ); ?></legend>17 <legend><?php ( bbp_is_topic_edit() || bbp_is_reply_edit() ) ? esc_html_e( 'Author Information', 'bbpress' ) : esc_html_e( 'Your information:', 'bbpress' ); ?></legend> 18 18 19 19 <?php do_action( 'bbp_theme_anonymous_form_extras_top' ); ?> 20 20 21 21 <p> 22 <label for="bbp_anonymous_author"><?php _e( 'Name (required):', 'bbpress' ); ?></label><br />22 <label for="bbp_anonymous_author"><?php esc_html_e( 'Name (required):', 'bbpress' ); ?></label><br /> 23 23 <input type="text" id="bbp_anonymous_author" value="<?php bbp_author_display_name(); ?>" size="40" name="bbp_anonymous_name" /> 24 24 </p> 25 25 26 26 <p> 27 <label for="bbp_anonymous_email"><?php _e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br />27 <label for="bbp_anonymous_email"><?php esc_html_e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br /> 28 28 <input type="text" id="bbp_anonymous_email" value="<?php bbp_author_email(); ?>" size="40" name="bbp_anonymous_email" /> 29 29 </p> 30 30 31 31 <p> 32 <label for="bbp_anonymous_website"><?php _e( 'Website:', 'bbpress' ); ?></label><br />32 <label for="bbp_anonymous_website"><?php esc_html_e( 'Website:', 'bbpress' ); ?></label><br /> 33 33 <input type="text" id="bbp_anonymous_website" value="<?php bbp_author_url(); ?>" size="40" name="bbp_anonymous_website" /> 34 34 </p>
Note: See TracChangeset
for help on using the changeset viewer.