summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury German <blueknight@gentoo.org>2019-05-22 00:42:33 -0400
committerYury German <blueknight@gentoo.org>2019-05-22 00:42:33 -0400
commite89abce1b01dda89efdf230101d1aa3c877b3b6c (patch)
treecfb27a564c1f4cfff30d18dbf591efd48283b154 /plugins/jetpack/3rd-party/debug-bar.php
parentAdding Twentyninetten (diff)
downloadblogs-gentoo-e89abce1b01dda89efdf230101d1aa3c877b3b6c.tar.gz
blogs-gentoo-e89abce1b01dda89efdf230101d1aa3c877b3b6c.tar.bz2
blogs-gentoo-e89abce1b01dda89efdf230101d1aa3c877b3b6c.zip
Updating of Plugins and Themes
List of Plugins updates -- akismet.4.1.2 google-authenticator.0.52 jetpack.7.3.1 List of Themes Updates -- mantra.3.2.0 twentyfifteen.2.5 twentyfourteen.2.7 Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/3rd-party/debug-bar.php')
-rw-r--r--plugins/jetpack/3rd-party/debug-bar.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/jetpack/3rd-party/debug-bar.php b/plugins/jetpack/3rd-party/debug-bar.php
deleted file mode 100644
index a6449903..00000000
--- a/plugins/jetpack/3rd-party/debug-bar.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-/**
- * Checks if the search module is active, and if so, will initialize the singleton instance
- * of Jetpack_Search_Debug_Bar and add it to the array of debug bar panels.
- *
- * @param array $panels The array of debug bar panels.
- * @return array $panel The array of debug bar panels with our added panel.
- */
-function init_jetpack_search_debug_bar( $panels ) {
- if ( ! Jetpack::is_module_active( 'search' ) ) {
- return $panels;
- }
-
- require_once dirname( __FILE__ ) . '/debug-bar/class.jetpack-search-debug-bar.php';
- $panels[] = Jetpack_Search_Debug_Bar::instance();
- return $panels;
-}
-add_filter( 'debug_bar_panels', 'init_jetpack_search_debug_bar' );