Skip to content

Commit eecf6b8

Browse files
committed
Fix broken link to PHPExcel site
Summary: phpexcel.net currently serves a 500 page, and the top Google hit for PHPExcel (on codeplex) gives you a site warning you that it is 3 years out of date, and to see GitHub instead. Update the link from Maniphest's 'please install PHPExcel to enable export' prompt. Test Plan: - Click 'Export to Excel' from Maniphest query result page without PHPExcel installed - Follow suggested link to install it - See code rather than a HTTP 500 error Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D16363
2 parents 24a28dd + 518479a commit eecf6b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/applications/maniphest/controller/ManiphestExportController.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ public function handleRequest(AphrontRequest $request) {
3131
'<p>%s</p>'.
3232
'<br />'.
3333
'<p>'.
34-
'<a href="http://www.phpexcel.net/">http://www.phpexcel.net/</a>'.
34+
'<a href="https://github.com/PHPOffice/PHPExcel">'.
35+
'https://github.com/PHPOffice/PHPExcel'.
36+
'</a>'.
3537
'</p>'.
3638
'<br />'.
3739
'<p>%s</p>',

0 commit comments

Comments
 (0)