Skip to:
Content

BuddyPress.org

Changeset 5272


Ignore:
Timestamp:
11/05/2011 08:09:23 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Introduce bbp-core-moderation.php to provide basic functions for checking submitted content against illegal keys and flooding. See #3732.

Location:
trunk/bp-core
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-loader.php

    r4965 r5272  
    44
    55// Require all of the BuddyPress core libraries
    6 require( BP_PLUGIN_DIR . '/bp-core/bp-core-cache.php'     );
    7 require( BP_PLUGIN_DIR . '/bp-core/bp-core-hooks.php'     );
    8 require( BP_PLUGIN_DIR . '/bp-core/bp-core-cssjs.php'     );
    9 require( BP_PLUGIN_DIR . '/bp-core/bp-core-classes.php'   );
    10 require( BP_PLUGIN_DIR . '/bp-core/bp-core-filters.php'   );
    11 require( BP_PLUGIN_DIR . '/bp-core/bp-core-avatars.php'   );
    12 require( BP_PLUGIN_DIR . '/bp-core/bp-core-widgets.php'   );
    13 require( BP_PLUGIN_DIR . '/bp-core/bp-core-template.php'  );
    14 require( BP_PLUGIN_DIR . '/bp-core/bp-core-buddybar.php'  );
    15 require( BP_PLUGIN_DIR . '/bp-core/bp-core-catchuri.php'  );
    16 require( BP_PLUGIN_DIR . '/bp-core/bp-core-component.php' );
    17 require( BP_PLUGIN_DIR . '/bp-core/bp-core-functions.php' );
     6require( BP_PLUGIN_DIR . '/bp-core/bp-core-cache.php'      );
     7require( BP_PLUGIN_DIR . '/bp-core/bp-core-hooks.php'      );
     8require( BP_PLUGIN_DIR . '/bp-core/bp-core-cssjs.php'      );
     9require( BP_PLUGIN_DIR . '/bp-core/bp-core-classes.php'    );
     10require( BP_PLUGIN_DIR . '/bp-core/bp-core-filters.php'    );
     11require( BP_PLUGIN_DIR . '/bp-core/bp-core-avatars.php'    );
     12require( BP_PLUGIN_DIR . '/bp-core/bp-core-widgets.php'    );
     13require( BP_PLUGIN_DIR . '/bp-core/bp-core-template.php'   );
     14require( BP_PLUGIN_DIR . '/bp-core/bp-core-buddybar.php'   );
     15require( BP_PLUGIN_DIR . '/bp-core/bp-core-catchuri.php'   );
     16require( BP_PLUGIN_DIR . '/bp-core/bp-core-component.php'  );
     17require( BP_PLUGIN_DIR . '/bp-core/bp-core-functions.php'  );
     18require( BP_PLUGIN_DIR . '/bp-core/bp-core-moderation.php' );
    1819
    1920// Load deprecated functions
Note: See TracChangeset for help on using the changeset viewer.