Skip to content

Commit

Permalink
Merge pull request #230 from Coral-erm/hotfix/resources-import-missin…
Browse files Browse the repository at this point in the history
…g-semicolon

Insert missing semicolon.
  • Loading branch information
scottvieira committed Jun 8, 2017
2 parents 652438a + 44005e9 commit aad1e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/import.php
Expand Up @@ -444,7 +444,7 @@ function searchForShortName($shortName, $array)
$resource->save();
if (isset($isbnIssn_values))
{
$resource->setIsbnOrIssn($isbnIssn_values)
$resource->setIsbnOrIssn($isbnIssn_values);
}
$inserted++;

Expand Down
2 changes: 1 addition & 1 deletion templates/footer.php
Expand Up @@ -24,7 +24,7 @@
<div class="push">&nbsp;</div>
</div>

<div class="footer"><?php echo _("Copyright");?> &copy; 2017. <?php echo _("CORAL version");?> 2.0.0<br/>
<div class="footer"><?php echo _("Copyright");?> &copy; 2017. <?php echo _("CORAL version");?> 2.0.1<br/>
<a href="http://coral-erm.org/"><?php echo _("CORAL Project Website");?></a> |
<a href="https://github.com/Coral-erm/Coral/issues"><?php echo _("Report an issue");?></a></div>
</body>
Expand Down

0 comments on commit aad1e98

Please sign in to comment.