From f9cceaada0b9390713a6104c458282f7144500ce Mon Sep 17 00:00:00 2001 From: Fred Condo Date: Wed, 1 Jul 2015 17:42:26 -0700 Subject: [PATCH] Correct doubly-escaped " marks The links in the Broken Links Report had extraneous " marks that made them unusable. This fixes the links. --- code/reports/BrokenLinksReport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/reports/BrokenLinksReport.php b/code/reports/BrokenLinksReport.php index 6de26f8d..5cdf46cb 100644 --- a/code/reports/BrokenLinksReport.php +++ b/code/reports/BrokenLinksReport.php @@ -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('%s', + return sprintf('%s', Controller::join_links($linkBase, $item->ID), _t('BrokenLinksReport.HoverTitleEditPage', 'Edit page'), $value