Opened 13 years ago
Closed 13 years ago
#2236 closed enhancement (invalid)
head_scripts() in bbpress-functions.php
| Reported by: | alexvorn2 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | trunk |
| Severity: | normal | 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This check is place to avoid adding the extra script tag if neither condition is met. Closing as invalid.