Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #218 from nevergone/branch-32
Browse files Browse the repository at this point in the history
correct title method for returning issue title via json (real fixes issue #1960)
  • Loading branch information
zegenie committed Oct 24, 2013
2 parents 7d4f2c6 + 4f7bb14 commit 5918524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/project/templates/listissues.json.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
foreach ($issues as $issue)
{
$return_issues[$issue->getID()] = array('id' => $issue->getID(),
'title' => $issue->getTitle(),
'title' => $issue->getRawTitle(),
'state' => $issue->getState(),
'issue_no' => $issue->getFormattedIssueNo(true, true),
'posted_by' => ($issue->getPostedBy() instanceof TBGIdentifiable) ? $issue->getPostedBy()->getUsername() : __('Unknown'),
Expand Down

0 comments on commit 5918524

Please sign in to comment.