Opened 12 years ago
Closed 12 years ago
#2236 closed enhancement (invalid)
head_scripts() in bbpress-functions.php
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | trunk |
Component: | General | Keywords: | |
Cc: |
Description
to remove
if ( bbp_is_single_user_edit() )
and
if ( bbp_use_wp_editor() ) :
conditions from the head_scripts() function of bbpress-functions.php
because from the start of this function we have a condition that checks false values of bbp_is_single_user_edit() AND bbp_use_wp_editor()... :
if ( ! bbp_is_single_user_edit() && ! bbp_use_wp_editor() ) return;
Change History (1)
Note: See
TracTickets for help on using
tickets.
This check is place to avoid adding the extra script tag if neither condition is met. Closing as invalid.