Skip to content

Commit

Permalink
Added email obfuscation support to JSON page
Browse files Browse the repository at this point in the history
  • Loading branch information
bentasker committed Apr 25, 2016
1 parent 7cb0e6f commit dc1ed97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/json/issue_page.php
Expand Up @@ -20,7 +20,7 @@
$projresponse->Key = "{$issue->pkey}-{$issue->issuenum}";
$projresponse->Name = $issue->SUMMARY;
$projresponse->Class = 'Issue';
$projresponse->Description = $issue->DESCRIPTION;
$projresponse->Description = textProcessMarkup($issue->DESCRIPTION);
$projresponse->LastModified = $dstring; // From etag generation
$projresponse->IssueType=$issue->issuetype;
$projresponse->Priority=$issue->priority;
Expand Down Expand Up @@ -193,7 +193,7 @@
$p->Key = $comment->ID;
$p->Author = $comment->AUTHOR;
$p->Created = strtotime($comment->CREATED);
$p->body = $comment->actionbody;
$p->body = textProcessMarkup($comment->actionbody);
$p->href=null;
$p->alternate = array();
$p->alternate[0]->type = 'text/html';
Expand All @@ -209,7 +209,7 @@
$p->Author = $work->AUTHOR;
$p->Created = $work->CREATED;
$p->timelogged = $work->timeworked;
$p->description = $work->worklogbody;
$p->description = textProcessMarkup($work->worklogbody);
$p->href=null;
$p->alternate = array();
$p->alternate[0]->type = 'text/html';
Expand Down

0 comments on commit dc1ed97

Please sign in to comment.