diff --git a/src/Tracy/Bar/panels/errors.panel.phtml b/src/Tracy/Bar/panels/warnings.panel.phtml
similarity index 100%
rename from src/Tracy/Bar/panels/errors.panel.phtml
rename to src/Tracy/Bar/panels/warnings.panel.phtml
diff --git a/src/Tracy/Bar/panels/errors.tab.phtml b/src/Tracy/Bar/panels/warnings.tab.phtml
similarity index 92%
rename from src/Tracy/Bar/panels/errors.tab.phtml
rename to src/Tracy/Bar/panels/warnings.tab.phtml
index 70b0a53ed..baef3e1cf 100644
--- a/src/Tracy/Bar/panels/errors.tab.phtml
+++ b/src/Tracy/Bar/panels/warnings.tab.phtml
@@ -10,7 +10,7 @@ if (empty($data)) {
}
?>
-
+
= $sum = array_sum($data), $sum > 1 ? ' warnings' : ' warning' ?>
diff --git a/src/Tracy/Debugger/Debugger.php b/src/Tracy/Debugger/Debugger.php
index 2af031e6e..c6591361e 100644
--- a/src/Tracy/Debugger/Debugger.php
+++ b/src/Tracy/Debugger/Debugger.php
@@ -408,7 +408,7 @@ public static function getBar(): Bar
self::$bar = new Bar;
self::$bar->addPanel($info = new DefaultBarPanel('info'), 'Tracy:info');
$info->cpuUsage = self::$cpuUsage;
- self::$bar->addPanel(new DefaultBarPanel('errors'), 'Tracy:errors'); // filled by errorHandler()
+ self::$bar->addPanel(new DefaultBarPanel('warnings'), 'Tracy:warnings'); // filled by errorHandler()
}
return self::$bar;
diff --git a/src/Tracy/Debugger/DevelopmentStrategy.php b/src/Tracy/Debugger/DevelopmentStrategy.php
index e53cb791d..ef53aef07 100644
--- a/src/Tracy/Debugger/DevelopmentStrategy.php
+++ b/src/Tracy/Debugger/DevelopmentStrategy.php
@@ -90,7 +90,7 @@ public function handleError(
}
$message = Helpers::errorTypeToString($severity) . ': ' . Helpers::improveError($message);
- $count = &$this->bar->getPanel('Tracy:errors')->data["$file|$line|$message"];
+ $count = &$this->bar->getPanel('Tracy:warnings')->data["$file|$line|$message"];
if (!$count++ && !Helpers::isHtmlMode() && !Helpers::isAjax()) {
echo "\n$message in $file on line $line\n";