Ticket #3407: 3407_3.patch
| File 3407_3.patch, 1.8 KB (added by , 8 months ago) |
|---|
-
src/includes/core/functions.php
15 15 * Return the bbPress version 16 16 * 17 17 * @since 2.0.0 bbPress (r3468) 18 * @ret run string The bbPress version18 * @return string The bbPress version 19 19 */ 20 20 function bbp_get_version() { 21 21 return bbpress()->version; … … 36 36 * Return the bbPress asset version 37 37 * 38 38 * @since 2.6.7 bbPress (r7188) 39 * @ret run string The bbPress asset version39 * @return string The bbPress asset version 40 40 */ 41 41 function bbp_get_asset_version() { 42 42 return bbp_doing_script_debug() … … 57 57 * Return the bbPress database version 58 58 * 59 59 * @since 2.0.0 bbPress (r3468) 60 * @ret run string The bbPress version60 * @return string The bbPress version 61 61 */ 62 62 function bbp_get_db_version() { 63 63 return bbpress()->db_version; … … 78 78 * Return the bbPress database version directly from the database 79 79 * 80 80 * @since 2.0.0 bbPress (r3468) 81 * @ret run string The current bbPress version81 * @return string The current bbPress version 82 82 */ 83 83 function bbp_get_db_version_raw() { 84 84 return get_option( '_bbp_db_version', '' ); … … 339 339 /** Rewrite Extras ************************************************************/ 340 340 341 341 /** 342 * Get the idused for paginated requests342 * Get the ID used for paginated requests 343 343 * 344 344 * @since 2.4.0 bbPress (r4926) 345 345 * … … 350 350 } 351 351 352 352 /** 353 * Delete a blog s rewrite rules,so that they are automatically rebuilt on354 * the subsequent page load. 353 * Delete a blog's rewrite rules so that they are automatically rebuilt on 354 * the subsequent page load. 355 355 * 356 356 * @since 2.2.0 bbPress (r4198) 357 357 */