mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 22:32:40 +08:00
Better code for #6106
This commit is contained in:
@ -21,7 +21,7 @@ Yii Framework 2 Change Log
|
||||
- Bug #6736: Removed `Content-Transfer-Encoding` from the list of default download headers (DaSourcerer)
|
||||
- Enh #4502: Added alias support to URL route when calling `Url::toRoute()` and `Url::to()` (qiangxue, lynicidn)
|
||||
- Enh #5194: `yii\console\controllers\AssetController` now handles bundle files from external resources properly (klimov-paul)
|
||||
- Enh #6106: Added ability to specify `encode` for each item of `yii\widgets\Breadcrumbs` (samdark)
|
||||
- Enh #6106: Added ability to specify `encode` for each item of `yii\widgets\Breadcrumbs` (samdark, aleksanderd)
|
||||
- Enh #6247: Logger and error handler are now using slightly less memory (stepanselyuk, samdark)
|
||||
- Enh #6398: Added support for specifying dependent component in terms of a configuration array for classes such as `DbCache` (qiangxue)
|
||||
- Enh #6434: Added `yii\behaviors\SluggableBehavior::immutable` to support keeping the generated slug unchanged (trntv)
|
||||
|
||||
@ -10,6 +10,7 @@ namespace yii\widgets;
|
||||
use Yii;
|
||||
use yii\base\Widget;
|
||||
use yii\base\InvalidConfigException;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\helpers\Html;
|
||||
|
||||
/**
|
||||
@ -159,12 +160,7 @@ class Breadcrumbs extends Widget
|
||||
*/
|
||||
protected function renderItem($link, $template)
|
||||
{
|
||||
$encodeLabel = $this->encodeLabels;
|
||||
if (array_key_exists('encode', $link)) {
|
||||
$encodeLabel = $link['encode'];
|
||||
unset($link['encode']);
|
||||
}
|
||||
|
||||
$encodeLabel = $encode = ArrayHelper::remove($link, 'encode', $this->encodeLabels);
|
||||
if (array_key_exists('label', $link)) {
|
||||
$label = $encodeLabel ? Html::encode($link['label']) : $link['label'];
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user