mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #1239 from oddnoc/broken-links-report-broken-link-31
Correct doubly-escaped " marks
This commit is contained in:
commit
2771f2708b
@ -83,7 +83,7 @@ class BrokenLinksReport extends SS_Report {
|
||||
"Title" => array(
|
||||
"title" => _t('BrokenLinksReport.PageName', 'Page name'),
|
||||
'formatting' => function($value, $item) use ($linkBase) {
|
||||
return sprintf('<a href=\"%s\" title=\"%s\">%s</a>',
|
||||
return sprintf('<a href="%s" title="%s">%s</a>',
|
||||
Controller::join_links($linkBase, $item->ID),
|
||||
_t('BrokenLinksReport.HoverTitleEditPage', 'Edit page'),
|
||||
$value
|
||||
|
Loading…
Reference in New Issue
Block a user