Changeset 12264
- Timestamp:
- 10/26/2018 12:06:50 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r11963 r12264 31 31 - WP_VERSION=4.7 BP_TRAVISCI=travis:phpunit 32 32 - WP_VERSION=4.6 BP_TRAVISCI=travis:phpunit 33 - WP_VERSION=4.5 BP_TRAVISCI=travis:phpunit34 33 35 34 matrix: … … 49 48 env: WP_VERSION=4.6 BP_TRAVISCI=travis:phpunit 50 49 dist: precise 51 - php: 5.352 env: WP_VERSION=4.5 BP_TRAVISCI=travis:phpunit53 dist: precise54 50 exclude: 55 51 - php: 7.2 56 52 env: WP_VERSION=4.6 BP_TRAVISCI=travis:phpunit 57 - php: 7.258 env: WP_VERSION=4.5 BP_TRAVISCI=travis:phpunit59 53 60 54 # before_install: Failures in this section will result in build status 'errored' -
trunk/src/bp-activity/bp-activity-embeds.php
r11957 r12264 2 2 /** 3 3 * Functions related to embedding single activity items externally. 4 *5 * Relies on WordPress 4.5.6 4 * 7 5 * @since 2.6.0 -
trunk/src/bp-core/bp-core-attachments.php
r12248 r12264 19 19 * 20 20 * @since 2.3.0 21 * @since 3.0.0 We now require WP >= 4.5, so this is always true.21 * @since 3.0.0 This is always true. 22 22 * 23 23 * @return bool Always true. -
trunk/src/bp-core/bp-core-cssjs.php
r11447 r12264 537 537 if ( wp_script_is( 'bp-moment-locale', 'registered' ) ) { 538 538 wp_enqueue_script( 'bp-moment-locale' ); 539 540 if ( function_exists( 'wp_add_inline_script' ) ) { 541 wp_add_inline_script ( 'bp-livestamp', bp_core_moment_js_config() ); 542 } else { 543 add_action( 'wp_footer', '_bp_core_moment_js_config_footer', 20 ); 544 } 539 wp_add_inline_script ( 'bp-livestamp', bp_core_moment_js_config() ); 545 540 } 546 541 … … 569 564 return $inline_js; 570 565 } 571 572 /**573 * Print moment.js config in page footer.574 *575 * Will be removed once we set our minimum version of WP 4.5.576 *577 * @since 2.7.0578 *579 * @access private580 */581 function _bp_core_moment_js_config_footer() {582 if ( ! wp_script_is( 'bp-moment-locale' ) ) {583 return;584 }585 586 printf( '<script>%s</script>', bp_core_moment_js_config() );587 } -
trunk/src/bp-core/deprecated/3.0.php
r11941 r12264 3 3 * Deprecated functions. 4 4 * 5 * @deprecated 2.9.05 * @deprecated 3.0.0 6 6 */ 7 7 -
trunk/src/class-buddypress.php
r12262 r12264 507 507 require( $this->plugin_dir . 'bp-core/deprecated/2.9.php' ); 508 508 require( $this->plugin_dir . 'bp-core/deprecated/3.0.php' ); 509 require( $this->plugin_dir . 'bp-core/deprecated/4.0.php' ); 509 510 } 510 511 -
trunk/src/readme.txt
r12263 r12264 2 2 Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla, karmatosed, slaFFik, dimensionmedia, henrywright, netweb, offereins, espellcaste, modemlooper, danbp, Venutius, apeatling, shanebp 3 3 Tags: user profiles, activity streams, messaging, friends, user groups, notifications, community, social networking 4 Requires at least: 4. 54 Requires at least: 4.6 5 5 Tested up to: 4.9.8 6 6 Requires PHP: 5.3
Note: See TracChangeset
for help on using the changeset viewer.