From a0c1dfa73212f57bc79540bb4e96b1408d5e1323 Mon Sep 17 00:00:00 2001 From: Yahnis Elsts Date: Sun, 4 Nov 2012 11:46:55 +0000 Subject: [PATCH] Add the update checker class name to the Debug Bar output. Useful when trying to figure out which library version was loaded. --- debug-bar-panel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/debug-bar-panel.php b/debug-bar-panel.php index 98f68ef..24722ee 100644 --- a/debug-bar-panel.php +++ b/debug-bar-panel.php @@ -62,6 +62,7 @@ class PluginUpdateCheckerPanel extends Debug_Bar_Panel { $this->row('Checked version', htmlentities($state->checkedVersion)); $this->row('Cached update', $state->update); } + $this->row('Update checker class', htmlentities(get_class($this->updateChecker))); echo ''; $update = $this->updateChecker->getUpdate();