Changeset 4825
- Timestamp:
- 03/26/2013 02:55:38 AM (13 years ago)
- Location:
- trunk/includes
- Files:
-
- 3 edited
-
forums/template-tags.php (modified) (1 diff)
-
replies/template-tags.php (modified) (1 diff)
-
topics/template-tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/forums/template-tags.php
r4808 r4825 1981 1981 // Get _POST data 1982 1982 if ( bbp_is_post_request() && isset( $_POST['bbp_forum_content'] ) ) { 1983 $forum_content = $_POST['bbp_forum_content'];1983 $forum_content = stripslashes( $_POST['bbp_forum_content'] ); 1984 1984 1985 1985 // Get edit data -
trunk/includes/replies/template-tags.php
r4814 r4825 2093 2093 // Get _POST data 2094 2094 if ( bbp_is_post_request() && isset( $_POST['bbp_reply_content'] ) ) { 2095 $reply_content = $_POST['bbp_reply_content'];2095 $reply_content = stripslashes( $_POST['bbp_reply_content'] ); 2096 2096 2097 2097 // Get edit data -
trunk/includes/topics/template-tags.php
r4819 r4825 3390 3390 // Get _POST data 3391 3391 if ( bbp_is_post_request() && isset( $_POST['bbp_topic_content'] ) ) { 3392 $topic_content = $_POST['bbp_topic_content'];3392 $topic_content = stripslashes( $_POST['bbp_topic_content'] ); 3393 3393 3394 3394 // Get edit data
Note: See TracChangeset
for help on using the changeset viewer.