- Timestamp:
- 05/21/2018 01:01:35 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/src/bp-templates/bp-nouveau/buddypress/activity/comment-form.php
r12082 r12105 16 16 <div class="ac-reply-content"> 17 17 <div class="ac-textarea"> 18 <label for="ac-input-<?php bp_activity_id(); ?>" class="bp-screen-reader-text"><?php _e( 'Comment', 'buddypress' ); ?></label> 18 <label for="ac-input-<?php bp_activity_id(); ?>" class="bp-screen-reader-text"> 19 <?php echo esc_html( _x( 'Comment', 'heading', 'buddypress' ) ); ?> 20 </label> 19 21 <textarea id="ac-input-<?php bp_activity_id(); ?>" class="ac-input bp-suggestions" name="ac_input_<?php bp_activity_id(); ?>"></textarea> 20 22 </div> 21 <input type="submit" name="ac_form_submit" value="<?php esc_attr_e( 'Post', 'buddypress' ); ?>" /> <button type="button" class="ac-reply-cancel"><?php _e( 'Cancel', 'buddypress' ); ?></button> 23 <?php 24 printf( 25 '<input type="submit" name="ac_form_submit" value="%s" /> <button type="button" class="ac-reply-cancel">%s</button>', 26 esc_attr( _x( 'Post', 'button', 'buddypress' ) ), 27 esc_html( _x( 'Cancel', 'button', 'buddypress' ) ) 28 ); 29 ?> 22 30 <input type="hidden" name="comment_form_id" value="<?php bp_activity_id(); ?>" /> 23 31 </div>
Note: See TracChangeset
for help on using the changeset viewer.