diff options
author | Brett Porter <brett@apache.org> | 2007-10-22 13:58:11 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2007-10-22 13:58:11 +0000 |
commit | 603860fca9db45534058dc2ba74a2702becaba4c (patch) | |
tree | b10cad0bddc7f33034c6414905b538c3e612d04a /archiva-web | |
parent | 21b1ab9f3b351050a423414bcd61185b92e0ae22 (diff) | |
download | archiva-603860fca9db45534058dc2ba74a2702becaba4c.tar.gz archiva-603860fca9db45534058dc2ba74a2702becaba4c.zip |
[MRM-396] remove true/false from boolean icons
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@587099 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-web')
-rw-r--r-- | archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositories.jsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositories.jsp b/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositories.jsp index 0b3e2003b..778257c3c 100644 --- a/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositories.jsp +++ b/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositories.jsp @@ -132,16 +132,16 @@ </tr> <tr> <th>Releases Included</th> - <td class="${repository.releases ? 'donemark' : 'errormark'} booleanIcon"> ${repository.releases}</td> + <td class="${repository.releases ? 'donemark' : 'errormark'} booleanIcon"> </td> </tr> <tr> <th>Snapshots Included</th> - <td class="${repository.snapshots ? 'donemark' : 'errormark'} booleanIcon"> ${repository.snapshots}</td> + <td class="${repository.snapshots ? 'donemark' : 'errormark'} booleanIcon"> </td> </tr> <c:if test="${repository.snapshots}"> <tr> <th>Delete Released Snapshots</th> - <td class="${repository.deleteReleasedSnapshots ? 'donemark' : 'errormark'} booleanIcon"> ${repository.deleteReleasedSnapshots}</td> + <td class="${repository.deleteReleasedSnapshots ? 'donemark' : 'errormark'} booleanIcon"> </td> </tr> <tr> <th>Repository Purge By Days Older Than</th> @@ -154,7 +154,7 @@ </c:if> <tr> <th>Scanned</th> - <td class="${repository.scanned ? 'donemark' : 'errormark'} booleanIcon"> ${repository.scanned}</td> + <td class="${repository.scanned ? 'donemark' : 'errormark'} booleanIcon"> </td> </tr> <c:if test="${repository.scanned}"> <tr> |