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

Commit

Permalink
rhbz1030746 Ensure that isPoProject is set correctly for prepareItera…
Browse files Browse the repository at this point in the history
…tionZipFile
  • Loading branch information
seanf committed Nov 15, 2013
1 parent 1a5546b commit 67416db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zanata-war/src/main/webapp/iteration/files.xhtml
Expand Up @@ -360,7 +360,7 @@
styleClass="action_link #{downloadAllAllowed ? '' : 'disabled'}"
rendered="#{projectIterationFilesAction.poProject or not downloadAllAllowed}"
value="#{messages['jsf.iteration.files.DownloadAllFiles']}"
action="#{projectIterationZipFileAction.prepareIterationZipFile(false)}"
action="#{projectIterationZipFileAction.prepareIterationZipFile(projectIterationFilesAction.poProject)}"
onclick="if(!downloadAllFilesClick()){ return false; }"
render="downloadProgressBar"
disabled="#{not downloadAllAllowed}"
Expand All @@ -370,7 +370,7 @@
styleClass="action_link #{downloadAllAllowed ? '' : 'disabled'}"
rendered="#{downloadAllAllowed and !projectIterationFilesAction.poProject}"
value="#{messages['jsf.iteration.files.DownloadAllFilesOfflinePo']}"
action="#{projectIterationZipFileAction.prepareIterationZipFile(true)}"
action="#{projectIterationZipFileAction.prepareIterationZipFile(projectIterationFilesAction.poProject)}"
onclick="if(!downloadAllFilesClick()){ return false; }"
render="downloadProgressBar"
disabled="#{not downloadAllAllowed}"
Expand Down

0 comments on commit 67416db

Please sign in to comment.