10000 Don't double encode Names · kartik-v/yii2-tree-manager@ed165a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
Don't double encode Names
Browse files Browse the repository at this point in the history
  • Loading branch information
BillHeaton committed Oct 7, 2019
1 parent 4de8df7 commit ed165a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/TreeTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function rules()
$nameAttribute,
'filter',
'filter' => function ($value) {
return Html::encode($value);
return Html::encode($value,false);
},
];
}
Expand Down

0 comments on commit ed165a7

Please sign in to comment.
0