Changeset 6806
- Timestamp:
- 04/23/2018 03:19:38 AM (7 years ago)
- Location:
- trunk/src/templates/default/bbpress
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-forum.php
r6452 r6806 25 25 <div id="new-forum-<?php bbp_forum_id(); ?>" class="bbp-forum-form"> 26 26 27 <form id="new-post" name="new-post" method="post" action="<?php bbp_forum_permalink(); ?>">27 <form id="new-post" name="new-post" method="post"> 28 28 29 29 <?php do_action( 'bbp_theme_before_forum_form' ); ?> -
trunk/src/templates/default/bbpress/form-reply-move.php
r6452 r6806 21 21 <div id="move-reply-<?php bbp_topic_id(); ?>" class="bbp-reply-move"> 22 22 23 <form id="move_reply" name="move_reply" method="post" action="<?php bbp_reply_permalink(); ?>">23 <form id="move_reply" name="move_reply" method="post"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-reply.php
r6714 r6806 23 23 <div id="new-reply-<?php bbp_topic_id(); ?>" class="bbp-reply-form"> 24 24 25 <form id="new-post" name="new-post" method="post" action="<?php bbp_reply_permalink() ?>">25 <form id="new-post" name="new-post" method="post"> 26 26 27 27 <?php do_action( 'bbp_theme_before_reply_form' ); ?> -
trunk/src/templates/default/bbpress/form-search.php
r6630 r6806 14 14 15 15 <div class="bbp-search-form"> 16 <form role="search" method="get" id="bbp-search-form" action="<?php bbp_search_url(); ?>">16 <form role="search" method="get" id="bbp-search-form"> 17 17 <div> 18 18 <label class="screen-reader-text hidden" for="bbp_search"><?php esc_html_e( 'Search for:', 'bbpress' ); ?></label> -
trunk/src/templates/default/bbpress/form-topic-merge.php
r6452 r6806 21 21 <div id="merge-topic-<?php bbp_topic_id(); ?>" class="bbp-topic-merge"> 22 22 23 <form id="merge_topic" name="merge_topic" method="post" action="<?php bbp_topic_permalink(); ?>">23 <form id="merge_topic" name="merge_topic" method="post"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-topic-split.php
r6452 r6806 21 21 <div id="split-topic-<?php bbp_topic_id(); ?>" class="bbp-topic-split"> 22 22 23 <form id="split_topic" name="split_topic" method="post" action="<?php bbp_topic_permalink(); ?>">23 <form id="split_topic" name="split_topic" method="post"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-topic-tag.php
r6452 r6806 35 35 </div> 36 36 37 <form id="rename_tag" name="rename_tag" method="post" action="<?php bbp_topic_tag_link(); ?>">37 <form id="rename_tag" name="rename_tag" method="post"> 38 38 39 39 <div> … … 75 75 </div> 76 76 77 <form id="merge_tag" name="merge_tag" method="post" action="<?php bbp_topic_tag_link(); ?>">77 <form id="merge_tag" name="merge_tag" method="post"> 78 78 79 79 <div> … … 112 112 </div> 113 113 114 <form id="delete_tag" name="delete_tag" method="post" action="<?php bbp_topic_tag_link(); ?>">114 <form id="delete_tag" name="delete_tag" method="post"> 115 115 116 116 <div class="bbp-submit-wrapper"> -
trunk/src/templates/default/bbpress/form-topic.php
r6714 r6806 33 33 <div id="new-topic-<?php bbp_topic_id(); ?>" class="bbp-topic-form"> 34 34 35 <form id="new-post" name="new-post" method="post" action="<?php bbp_topic_permalink(); ?>">35 <form id="new-post" name="new-post" method="post"> 36 36 37 37 <?php do_action( 'bbp_theme_before_topic_form' ); ?> -
trunk/src/templates/default/bbpress/form-user-edit.php
r6617 r6806 13 13 ?> 14 14 15 <form id="bbp-your-profile" action="<?php bbp_user_profile_edit_url( bbp_get_displayed_user_id() ); ?>"method="post" enctype="multipart/form-data">15 <form id="bbp-your-profile" method="post" enctype="multipart/form-data"> 16 16 17 17 <h2 class="entry-title"><?php esc_html_e( 'Name', 'bbpress' ) ?></h2>
Note: See TracChangeset
for help on using the changeset viewer.