Skip to content

Commit

Permalink
uncaught_exception_error_in_wp-includes
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakrohillas committed May 29, 2024
1 parent e66ea99 commit 5bc55f3
Show file tree
Hide file tree
Showing 18 changed files with 93 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/wp-includes/class-IXR.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
* @license http://www.opensource.org/licenses/bsd-license.php BSD
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

require_once ABSPATH . WPINC . '/IXR/class-IXR-server.php';

require_once ABSPATH . WPINC . '/IXR/class-IXR-base64.php';
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/class-wp-customize-control.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* @since 3.4.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Customize Control class.
*
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/class-wp-customize-panel.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
* @subpackage Customize
* @since 4.0.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Customize Panel class.
Expand Down
7 changes: 6 additions & 1 deletion src/wp-includes/class-wp-customize-setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
* @subpackage Customize
* @since 3.4.0
*/


// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Customize Setting class.
*
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/class-wp-http.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* @since 2.7.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

if ( ! class_exists( 'WpOrg\Requests\Autoload' ) ) {
require ABSPATH . WPINC . '/Requests/src/Autoload.php';

Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/class-wp-simplepie-sanitize-kses.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* @since 4.7.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Core class used to implement SimplePie feed sanitization.
*
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/class-wp-text-diff-renderer-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
* @subpackage Diff
* @since 4.7.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Table renderer to display the diff lines.
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/default-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
* @package WordPress
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

// Strip, trim, kses, special chars for string saves.
foreach ( array( 'pre_term_name', 'pre_comment_author_name', 'pre_link_name', 'pre_link_target', 'pre_link_rel', 'pre_user_display_name', 'pre_user_first_name', 'pre_user_last_name', 'pre_user_nickname' ) as $filter ) {
add_filter( $filter, 'sanitize_text_field' );
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/default-widgets.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* @since 2.8.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/** WP_Widget_Pages class */
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-pages.php';

Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/feed-atom.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
*
* @package WordPress
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

header( 'Content-Type: ' . feed_content_type( 'atom' ) . '; charset=' . get_option( 'blog_charset' ), true );
$more = 1;
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
* @package WordPress
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

require ABSPATH . WPINC . '/option.php';

/**
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/media.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
* @package WordPress
* @subpackage Media
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Retrieves additional image sizes.
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/ms-blogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
* @since MU (3.0.0)
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

require_once ABSPATH . WPINC . '/ms-site.php';
require_once ABSPATH . WPINC . '/ms-network.php';

Expand Down
7 changes: 6 additions & 1 deletion src/wp-includes/ms-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
* @subpackage Multisite
* @since 3.0.0
*/


// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/**
* Objects representing the current network and current site.
*
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/nav-menu-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* @since 3.0.0
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

/** Walker_Nav_Menu class */
require_once ABSPATH . WPINC . '/class-walker-nav-menu.php';

Expand Down
6 changes: 6 additions & 0 deletions src/wp-includes/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
* @param bool $force_check Whether to bypass the transient cache and force a fresh update check.
* Defaults to false, true if $extra_stats is set.
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

function wp_version_check( $extra_stats = array(), $force_check = false ) {
global $wpdb, $wp_local_package;

Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/vars.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
* @package WordPress
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

global $pagenow,
$is_lynx, $is_gecko, $is_winIE, $is_macIE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone, $is_IE, $is_edge,
$is_apache, $is_IIS, $is_iis7, $is_nginx, $is_caddy;
Expand Down
5 changes: 5 additions & 0 deletions src/wp-includes/wp-diff.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
* @subpackage Diff
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}

if ( ! class_exists( 'Text_Diff', false ) ) {
/** Text_Diff class */
require ABSPATH . WPINC . '/Text/Diff.php';
Expand Down

0 comments on commit 5bc55f3

Please sign in to comment.