Changeset 6452
- Timestamp:
- 06/01/2017 09:05:34 PM (6 years ago)
- Location:
- trunk/src/templates/default/bbpress
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-forum.php
r6361 r6452 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 the_permalink(); ?>">27 <form id="new-post" name="new-post" method="post" action="<?php bbp_forum_permalink(); ?>"> 28 28 29 29 <?php do_action( 'bbp_theme_before_forum_form' ); ?> -
trunk/src/templates/default/bbpress/form-reply-move.php
r6258 r6452 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 the_permalink(); ?>">23 <form id="move_reply" name="move_reply" method="post" action="<?php bbp_reply_permalink(); ?>"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-reply.php
r6361 r6452 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 the_permalink();?>">25 <form id="new-post" name="new-post" method="post" action="<?php bbp_reply_permalink() ?>"> 26 26 27 27 <?php do_action( 'bbp_theme_before_reply_form' ); ?> -
trunk/src/templates/default/bbpress/form-topic-merge.php
r6384 r6452 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 the_permalink(); ?>">23 <form id="merge_topic" name="merge_topic" method="post" action="<?php bbp_topic_permalink(); ?>"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-topic-split.php
r6384 r6452 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 the_permalink(); ?>">23 <form id="split_topic" name="split_topic" method="post" action="<?php bbp_topic_permalink(); ?>"> 24 24 25 25 <fieldset class="bbp-form"> -
trunk/src/templates/default/bbpress/form-topic-tag.php
r6258 r6452 35 35 </div> 36 36 37 <form id="rename_tag" name="rename_tag" method="post" action="<?php the_permalink(); ?>">37 <form id="rename_tag" name="rename_tag" method="post" action="<?php bbp_topic_tag_link(); ?>"> 38 38 39 39 <div> … … 75 75 </div> 76 76 77 <form id="merge_tag" name="merge_tag" method="post" action="<?php the_permalink(); ?>">77 <form id="merge_tag" name="merge_tag" method="post" action="<?php bbp_topic_tag_link(); ?>"> 78 78 79 79 <div> … … 112 112 </div> 113 113 114 <form id="delete_tag" name="delete_tag" method="post" action="<?php the_permalink(); ?>">114 <form id="delete_tag" name="delete_tag" method="post" action="<?php bbp_topic_tag_link(); ?>"> 115 115 116 116 <div class="bbp-submit-wrapper"> -
trunk/src/templates/default/bbpress/form-topic.php
r6361 r6452 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 the_permalink(); ?>">35 <form id="new-post" name="new-post" method="post" action="<?php bbp_topic_permalink(); ?>"> 36 36 37 37 <?php do_action( 'bbp_theme_before_topic_form' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.