Changeset 2811
- Timestamp:
- 01/17/2011 05:32:48 AM (15 years ago)
- Location:
- branches/plugin
- Files:
-
- 2 edited
-
bbp-includes/bbp-general-template.php (modified) (2 diffs)
-
bbpress.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-general-template.php
r2810 r2811 330 330 * tab index by default. 331 331 * 332 * @since bbPress (r2810) 333 * 332 334 * @param int $auto_increment Optional Default true. Set to false to prevent ++ 333 335 */ … … 343 345 * tab index by default. 344 346 * 347 * @since bbPress (r2810) 348 * 345 349 * @uses apply_filters Allows return value to be filtered 346 350 * @param int $auto_increment Optional Default true. Set to false to prevent ++ -
branches/plugin/bbpress.php
r2810 r2811 243 243 function _setup_globals() { 244 244 245 /** Paths ***************************************************** /245 /** Paths *************************************************************/ 246 246 247 247 // bbPress root directory … … 257 257 $this->themes_url = $this->plugin_url . 'bbp-themes'; 258 258 259 /** Identifiers *********************************************** /259 /** Identifiers *******************************************************/ 260 260 261 261 // Post type identifiers … … 270 270 $this->trash_status_id = 'trash'; 271 271 272 /** Slugs ***************************************************** /272 /** Slugs *************************************************************/ 273 273 274 274 // Root forum slug … … 286 286 $this->topic_tag_slug = apply_filters( 'bbp_topic_tag_slug', $prefix . get_option( '_bbp_topic_tag_slug', 'tag' ) ); 287 287 288 /** Misc ****************************************************** /288 /** Misc **************************************************************/ 289 289 290 290 // Errors 291 $this->errors = new WP_Error();291 $this->errors = new WP_Error(); 292 292 293 293 // Views 294 $this->views = array(); 294 $this->views = array(); 295 296 // Tab Index 297 $this->tab_index = apply_filters( 'bbp_default_tab_index', 100 ); 295 298 } 296 299
Note: See TracChangeset
for help on using the changeset viewer.