Skip to content

Commit

Permalink
Merge pull request pkp#1759 from ajnyga/show-issue-identification-in-…
Browse files Browse the repository at this point in the history
…statistics

Instead of issue title, show issue identification in statistics output
  • Loading branch information
bozana authored Dec 14, 2017
2 parents 97e3fff + e93be1c commit 5580f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/management/ToolsHandler.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected function getObjectTitle($assocId, $assocType) {
$issueDao = DAORegistry::getDAO('IssueDAO');
$issue = $issueDao->getById($assocId);
if ($issue) {
$objectTitle = $issue->getLocalizedTitle();
$objectTitle = $issue->getIssueIdentification();
}
break;
}
Expand Down

0 comments on commit 5580f36

Please sign in to comment.