Skip to:
Content

bbPress.org

Ticket #3641: 3641.patch

File 3641.patch, 1.1 KB (added by viralsampat, 7 months ago)

I have checked above mentioned issue and resolved it. Here, I have added my patch.

  • includes/core/template-loader.php

     
    129129 *
    130130 * @since 2.1.0 bbPress (r3732)
    131131 *
    132  * @global string $pagenow
     132 * @global string $pagenow The Filename of the current screen.
    133133 */
    134134function bbp_load_theme_functions() {
    135135        global $pagenow;
  • includes/core/update.php

     
    4242 * for third party plugins to use to check for bbPress activation.
    4343 *
    4444 * @since 2.0.0 bbPress (r3421)
     45 *
     46 * @global string $pagenow The filename of the current screen.
    4547 *
    4648 * @return bool True if activating bbPress, false if not
    4749 */
     
    9294 * Determine if bbPress is being deactivated
    9395 *
    9496 * @since 2.0.0 bbPress (r3421)
     97 *
     98 * @global string $pagenow The filename of the current screen.
    9599 *
    96100 * @return bool True if deactivating bbPress, false if not
    97101 */