mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Remove double escaping of report data
This commit is contained in:
parent
a530085016
commit
fe8cbc89d4
@ -296,7 +296,7 @@ class SS_Report extends ViewableData {
|
|||||||
return sprintf(
|
return sprintf(
|
||||||
'<a href="%s">%s</a>',
|
'<a href="%s">%s</a>',
|
||||||
Controller::join_links(singleton('CMSPageEditController')->Link('show'), $item->ID),
|
Controller::join_links(singleton('CMSPageEditController')->Link('show'), $item->ID),
|
||||||
Convert::raw2xml($value)
|
$value
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user