Skip to content

Commit

Permalink
Updated package versions for automattic/jetpack
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradsha authored and matticbot committed Jan 20, 2025
1 parent 5f2cd4b commit b77de7b
Show file tree
Hide file tree
Showing 599 changed files with 15,041 additions and 8,743 deletions.
3 changes: 0 additions & 3 deletions 3rd-party/3rd-party.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
* This is a refactor of load_3rd_party() to load the individual compat files only when needed instead of universally.
*/
function load_3rd_party_compat_filters() {
// SalesForce
// @todo This one probably makes more sense to move to the Forms package (and the module until it is fully deprecated).
require_once JETPACK__PLUGIN_DIR . '/3rd-party/class-salesforce-lead-form.php'; // not a module but the handler for Salesforce forms

// bbPress
if ( function_exists( 'bbpress' ) ) {
Expand Down
149 changes: 0 additions & 149 deletions 3rd-party/class-salesforce-lead-form.php

This file was deleted.

4 changes: 2 additions & 2 deletions 3rd-party/creative-mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Automattic\Jetpack\Plugins_Installer;

if ( ! defined( 'ABSPATH' ) ) {
exit;
exit( 0 );
}

const PLUGIN_SLUG = 'creative-mail-by-constant-contact';
Expand Down Expand Up @@ -65,7 +65,7 @@ function try_install() {

wp_safe_redirect( $redirect );

exit;
exit( 0 );
}

/**
Expand Down
9 changes: 5 additions & 4 deletions 3rd-party/debug-bar/debug-bar.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/* global jQuery, JSON */
/* global jQuery */
/* eslint no-var: "off" */

( function( $ ) {
$( document ).ready( function() {
$( '.jetpack-search-debug-bar .json-toggle-wrap .toggle' ).click( function() {
( function ( $ ) {
$( document ).ready( function () {
$( '.jetpack-search-debug-bar .json-toggle-wrap .toggle' ).click( function () {
var t = $( this ),
wrap = t.closest( '.json-toggle-wrap' ),
pre = wrap.find( 'pre' ),
Expand Down
4 changes: 2 additions & 2 deletions 3rd-party/jetpack-backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Automattic\Jetpack\Plugins_Installer;

if ( ! defined( 'ABSPATH' ) ) {
exit;
exit( 0 );
}

const PLUGIN_SLUG = 'jetpack-backup';
Expand Down Expand Up @@ -63,7 +63,7 @@ function try_install() {

wp_safe_redirect( $redirect );

exit;
exit( 0 );
}

/**
Expand Down
4 changes: 2 additions & 2 deletions 3rd-party/jetpack-boost.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Automattic\Jetpack\Plugins_Installer;

if ( ! defined( 'ABSPATH' ) ) {
exit;
exit( 0 );
}

const PLUGIN_SLUG = 'jetpack-boost';
Expand Down Expand Up @@ -65,7 +65,7 @@ function try_install() {

wp_safe_redirect( $redirect );

exit;
exit( 0 );
}

/**
Expand Down
2 changes: 1 addition & 1 deletion 3rd-party/web-stories.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Automattic\Jetpack\Web_Stories;

if ( ! defined( 'ABSPATH' ) ) {
exit;
exit( 0 );
}

/**
Expand Down
4 changes: 2 additions & 2 deletions 3rd-party/woocommerce-services.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use Automattic\Jetpack\Plugins_Installer;

if ( ! defined( 'ABSPATH' ) ) {
exit;
exit( 0 );
}

/**
Expand Down Expand Up @@ -104,7 +104,7 @@ public function try_install() {

wp_safe_redirect( $redirect );

exit;
exit( 0 );
}

/**
Expand Down
Loading

0 comments on commit b77de7b

Please sign in to comment.