Changeset 59688
- Timestamp:
- 01/22/2025 07:46:16 PM (4 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-IXR.php
r47198 r59688 40 40 */ 41 41 42 // Don't load directly. 43 if ( ! defined( 'ABSPATH' ) ) { 44 die( '-1' ); 45 } 46 42 47 require_once ABSPATH . WPINC . '/IXR/class-IXR-server.php'; 43 48 -
trunk/src/wp-includes/class-wp-customize-control.php
r59190 r59688 7 7 * @since 3.4.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** -
trunk/src/wp-includes/class-wp-customize-panel.php
r59224 r59688 7 7 * @since 4.0.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** -
trunk/src/wp-includes/class-wp-customize-setting.php
r56551 r59688 7 7 * @since 3.4.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** -
trunk/src/wp-includes/class-wp-http.php
r59009 r59688 7 7 * @since 2.7.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 if ( ! class_exists( 'WpOrg\Requests\Autoload' ) ) { -
trunk/src/wp-includes/class-wp-simplepie-sanitize-kses.php
r59141 r59688 7 7 * @since 4.7.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** -
trunk/src/wp-includes/class-wp-text-diff-renderer-table.php
r56938 r59688 7 7 * @since 4.7.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** -
trunk/src/wp-includes/default-filters.php
r59576 r59688 23 23 * @package WordPress 24 24 */ 25 26 // Don't load directly. 27 if ( ! defined( 'ABSPATH' ) ) { 28 die( '-1' ); 29 } 25 30 26 31 // Strip, trim, kses, special chars for string saves. -
trunk/src/wp-includes/default-widgets.php
r50995 r59688 7 7 * @since 2.8.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** WP_Widget_Pages class */ -
trunk/src/wp-includes/feed-atom.php
r52267 r59688 5 5 * @package WordPress 6 6 */ 7 8 // Don't load directly. 9 if ( ! defined( 'ABSPATH' ) ) { 10 die( '-1' ); 11 } 7 12 8 13 header( 'Content-Type: ' . feed_content_type( 'atom' ) . '; charset=' . get_option( 'blog_charset' ), true ); -
trunk/src/wp-includes/functions.php
r59488 r59688 5 5 * @package WordPress 6 6 */ 7 8 // Don't load directly. 9 if ( ! defined( 'ABSPATH' ) ) { 10 die( '-1' ); 11 } 7 12 8 13 require ABSPATH . WPINC . '/option.php'; -
trunk/src/wp-includes/media.php
r59486 r59688 6 6 * @subpackage Media 7 7 */ 8 9 // Don't load directly. 10 if ( ! defined( 'ABSPATH' ) ) { 11 die( '-1' ); 12 } 8 13 9 14 /** -
trunk/src/wp-includes/ms-blogs.php
r59189 r59688 8 8 * @since MU (3.0.0) 9 9 */ 10 11 // Don't load directly. 12 if ( ! defined( 'ABSPATH' ) ) { 13 die( '-1' ); 14 } 10 15 11 16 require_once ABSPATH . WPINC . '/ms-site.php'; -
trunk/src/wp-includes/ms-settings.php
r55990 r59688 10 10 * @since 3.0.0 11 11 */ 12 13 // Don't load directly. 14 if ( ! defined( 'ABSPATH' ) ) { 15 die( '-1' ); 16 } 12 17 13 18 /** -
trunk/src/wp-includes/nav-menu-template.php
r58124 r59688 7 7 * @since 3.0.0 8 8 */ 9 10 // Don't load directly. 11 if ( ! defined( 'ABSPATH' ) ) { 12 die( '-1' ); 13 } 9 14 10 15 /** Walker_Nav_Menu class */ -
trunk/src/wp-includes/update.php
r59140 r59688 6 6 * @since 2.3.0 7 7 */ 8 9 // Don't load directly. 10 if ( ! defined( 'ABSPATH' ) ) { 11 die( '-1' ); 12 } 8 13 9 14 /** -
trunk/src/wp-includes/vars.php
r57923 r59688 15 15 * @package WordPress 16 16 */ 17 18 // Don't load directly. 19 if ( ! defined( 'ABSPATH' ) ) { 20 die( '-1' ); 21 } 17 22 18 23 global $pagenow, -
trunk/src/wp-includes/wp-diff.php
r59105 r59688 8 8 * @subpackage Diff 9 9 */ 10 11 // Don't load directly. 12 if ( ! defined( 'ABSPATH' ) ) { 13 die( '-1' ); 14 } 10 15 11 16 if ( ! class_exists( 'Text_Diff', false ) ) {
Note: See TracChangeset
for help on using the changeset viewer.