Changeset 1270 for trunk/bp-blogs.php
- Timestamp:
- 03/27/2009 10:27:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs.php
r1250 r1270 15 15 define ( 'BP_BLOGS_DB_VERSION', '937' ); 16 16 17 define ( 'BP_BLOGS_SLUG', apply_filters( 'bp_blogs_slug', 'blogs' ) ); 18 19 /* These will be moved into admin configurable settings */ 20 define ( 'TOTAL_RECORDED_POSTS', 150 ); 21 define ( 'TOTAL_RECORDED_COMMENTS', 500 ); 17 /* Define the slug for the component */ 18 if ( !defined( 'BP_BLOGS_SLUG' ) ) 19 define ( 'BP_BLOGS_SLUG', 'blogs' ); 20 21 /* Define the total number of posts to keep track of for each user. */ 22 if ( !defined( 'TOTAL_RECORDED_POSTS' ) ) 23 define ( 'TOTAL_RECORDED_POSTS', 150 ); 24 25 /* Define the total number of comments to keep track of for each user. */ 26 if ( !defined( 'TOTAL_RECORDED_COMMENTS' ) ) 27 define ( 'TOTAL_RECORDED_COMMENTS', 500 ); 22 28 23 29 require ( 'bp-blogs/bp-blogs-classes.php' );
Note: See TracChangeset
for help on using the changeset viewer.