Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fix(ZNTA-1154) : Change quotes for message bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
broccolinisoup committed Jul 1, 2016
1 parent 589b839 commit e0308a0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions zanata-war/src/main/webapp/admin/cachestats.xhtml
Expand Up @@ -55,14 +55,13 @@
<td>
<h:commandButton value="#{msgs['jsf.Clear']}"
action="#{cacheAction.clearCache(cacheName)}"
onclick="return confirm(&quot;#{msgs['jsf.cacheStats.confirmationCleaningCache']}&quot;)"/>
onclick="return confirm('#{msgs['jsf.cacheStats.confirmationCleaningCache']}')"/>
</td>

<td>
<h:commandButton value="#{msgs['jsf.Reset']}"
action="#{cacheAction.resetCacheStats(cacheName)}"
onclick="return confirm(&quot;#{msgs['jsf.cacheStats.confirmationResettingCache']}&quot;)"/>
/>
onclick="return confirm('#{msgs['jsf.cacheStats.confirmationResettingCache']}')"/>
</td>
</tr>
</c:forEach>
Expand All @@ -72,7 +71,7 @@
<td>
<h:commandButton value="#{msgs['jsf.ClearAllCaches']}"
action="#{cacheAction.clearAllCaches}"
onclick="return confirm(&quot;#{msgs['jsf.cacheStats.confirmationCleaningAllCache']}&quot;)"/>
onclick="return confirm('#{msgs['jsf.cacheStats.confirmationCleaningAllCache']}')"/>
</td>
</tr>
</tfoot>
Expand Down

0 comments on commit e0308a0

Please sign in to comment.