From bf064a38604f0d0c3de8ea18b3ca681a6bdbfc29 Mon Sep 17 00:00:00 2001 From: Anton Date: Tue, 3 May 2022 21:59:59 +0300 Subject: [PATCH] Fix my mistake in `Breadcrumbs::run()` --- src/Breadcrumbs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Breadcrumbs.php b/src/Breadcrumbs.php index bac46c1..9e5c525 100644 --- a/src/Breadcrumbs.php +++ b/src/Breadcrumbs.php @@ -103,7 +103,7 @@ class Breadcrumbs extends \yii\widgets\Breadcrumbs } Html::addCssClass($this->options, ['widget' => 'breadcrumb']); - // @todo update after fixing the parent method + // parent method not return result ob_start(); parent::run(); $content = ob_get_clean();