DEV: remove html tags from GDPR output null values (#231)
This commit is contained in:
committed by
Lorenzo Milesi
parent
0cf5efd99c
commit
cd470ded78
@ -265,8 +265,12 @@ class SettingsController extends Controller
|
|||||||
$user = Yii::$app->user->identity;
|
$user = Yii::$app->user->identity;
|
||||||
$data = [$properties, []];
|
$data = [$properties, []];
|
||||||
|
|
||||||
|
$formatter = Yii::$app->formatter;
|
||||||
|
// override the default html-specific format for nulls
|
||||||
|
$formatter->nullDisplay = "";
|
||||||
|
|
||||||
foreach ($properties as $property) {
|
foreach ($properties as $property) {
|
||||||
$data[1][] = Yii::$app->formatter->asText(ArrayHelper::getValue($user, $property));
|
$data[1][] = $formatter->asText(ArrayHelper::getValue($user, $property));
|
||||||
}
|
}
|
||||||
|
|
||||||
array_walk($data[0], function (&$value, $key) {
|
array_walk($data[0], function (&$value, $key) {
|
||||||
|
|||||||
Reference in New Issue
Block a user