Changeset 3343
- Timestamp:
- 06/23/2011 07:34:32 AM (15 years ago)
- Location:
- branches/plugin/bbp-admin
- Files:
-
- 4 edited
-
bbp-admin.php (modified) (1 diff)
-
bbp-forums.php (modified) (2 diffs)
-
bbp-replies.php (modified) (2 diffs)
-
bbp-topics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-admin.php
r3338 r3343 413 413 * @uses bbp_get_reply_post_type() To get the reply post type 414 414 * @uses sanitize_html_class() To sanitize the classes 415 * @uses bbp_is_forum() To check if it is a forum page416 * @uses bbp_is_topic() To check if it is a topic page417 * @uses bbp_is_reply() To check if it is a reply page418 415 * @uses do_action() Calls 'bbp_admin_head' 419 416 */ -
branches/plugin/bbp-admin/bbp-forums.php
r3310 r3343 313 313 * @uses bbp_get_reply_post_type() To get the reply post type 314 314 * @uses sanitize_html_class() To sanitize the classes 315 * @uses bbp_is_forum() To check if it is a forum page316 * @uses bbp_is_topic() To check if it is a topic page317 * @uses bbp_is_reply() To check if it is a reply page318 315 * @uses do_action() Calls 'bbp_admin_head' 319 316 */ … … 564 561 * @uses BBP_Forums_Admin 565 562 */ 566 function bbp_ forums_admin() {563 function bbp_admin_forums() { 567 564 global $bbp; 568 565 -
branches/plugin/bbp-admin/bbp-replies.php
r3318 r3343 349 349 * @uses bbp_get_reply_post_type() To get the reply post type 350 350 * @uses sanitize_html_class() To sanitize the classes 351 * @uses bbp_is_forum() To check if it is a forum page352 * @uses bbp_is_topic() To check if it is a topic page353 * @uses bbp_is_reply() To check if it is a reply page354 351 * @uses do_action() Calls 'bbp_admin_head' 355 352 */ … … 884 881 * @uses BBP_Replies_Admin 885 882 */ 886 function bbp_ replies_admin() {883 function bbp_admin_replies() { 887 884 global $bbp; 888 885 -
branches/plugin/bbp-admin/bbp-topics.php
r3318 r3343 370 370 * @uses bbp_get_reply_post_type() To get the reply post type 371 371 * @uses sanitize_html_class() To sanitize the classes 372 * @uses bbp_is_forum() To check if it is a forum page373 * @uses bbp_is_topic() To check if it is a topic page374 * @uses bbp_is_reply() To check if it is a reply page375 372 * @uses do_action() Calls 'bbp_admin_head' 376 373 */ 377 374 function admin_head() { 378 375 379 if ( bbp_is_topic()) : ?>376 if ( get_post_type() == $this->post_type ) : ?> 380 377 381 378 <style type="text/css" media="screen"> … … 960 957 * @uses BBP_Forums_Admin 961 958 */ 962 function bbp_ topics_admin() {959 function bbp_admin_topics() { 963 960 global $bbp; 964 961
Note: See TracChangeset
for help on using the changeset viewer.