Skip to content

Commit

Permalink
Merge pull request #195 from charvolant/1.4.2.1
Browse files Browse the repository at this point in the history
Version 1.4.2.2
  • Loading branch information
charvolant committed Jun 18, 2018
2 parents 5f60192 + 5653836 commit ed2d9f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
}
}

version "1.4.2.1"
version "1.4.2.2"
group "au.org.ala"

apply plugin:"eclipse"
Expand Down Expand Up @@ -73,7 +73,7 @@ dependencies {
compile 'org.grails.plugins:external-config:1.1.1'

compile group: 'org.grails.plugins', name: 'ala-bootstrap3', version: '3.0.3'
compile(group: 'org.grails.plugins', name: 'ala-auth', version:'3.1.0') {
compile(group: 'org.grails.plugins', name: 'ala-auth', version:'3.0.4') {
exclude group: 'javax.servlet', module: 'servlet-api'
}
compile group: 'org.grails.plugins', name: 'ala-admin-plugin', version: '2.0'
Expand Down
4 changes: 2 additions & 2 deletions grails-app/services/au/org/ala/bie/ImportService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2149,9 +2149,9 @@ class ImportService {
return nameFormatted
if (nameComplete) {
def authorIndex = scientificNameAuthorship ? nameComplete.indexOf(scientificNameAuthorship) : -1
if (authorIndex < 0)
if (authorIndex <= 0)
return "<span class=\"${formattedCssClass}\">${StringEscapeUtils.escapeHtml(nameComplete)}</span>"
def preAuthor = nameComplete.substring(0, authorIndex - 1).trim()
def preAuthor = nameComplete.substring(0, authorIndex).trim()
def postAuthor = nameComplete.substring(authorIndex + scientificNameAuthorship.length()).trim()
def name = "<span class=\"${formattedCssClass}\">"
if (preAuthor && !preAuthor.isEmpty())
Expand Down

0 comments on commit ed2d9f8

Please sign in to comment.