PluginProbe
TablePress – Tables in WordPress made easy / 3.0
TablePress – Tables in WordPress made easy v3.0
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
← All changes | classes/class-controller.php +2 -2 trunk3.0 View file →
@@ -71,13 +71,13 @@
71 71 if ( TablePress::$model_options->get( 'use_custom_css' ) && '' !== $custom_css ) {
72 72 /**
73 73 * Load WP file functions to provide filesystem access functions early.
74 74 */
75 - require_once ABSPATH . 'wp-admin/includes/file.php';
75 + require_once ABSPATH . 'wp-admin/includes/file.php'; // @phpstan-ignore requireOnce.fileNotFound (This is a WordPress core file that always exists.)
76 76 /**
77 77 * Load WP admin template functions to provide `submit_button()` which is necessary for `request_filesystem_credentials()`.
78 78 */
79 - require_once ABSPATH . 'wp-admin/includes/template.php';
79 + require_once ABSPATH . 'wp-admin/includes/template.php'; // @phpstan-ignore requireOnce.fileNotFound (This is a WordPress core file that always exists.)
80 80 $tablepress_css = TablePress::load_class( 'TablePress_CSS', 'class-css.php', 'classes' );
81 81
82 82 $custom_css_minified = TablePress::$model_options->get( 'custom_css_minified' );
83 83