Skip to content

Commit

Permalink
LSNBLDR-673; don't show "choose all" in page chooser (sakaiproject#2993)
Browse files Browse the repository at this point in the history
  • Loading branch information
clhedrick authored Jul 5, 2016
1 parent 552f7f1 commit b45e492
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,8 @@ public void fillComponents(UIContainer tofill, ViewParameters viewparams, Compon

if (entry.level < 0) {
UIOutput.make(row, "heading", messageLocator.getMessage("simplepage.chooser.unused"));
UIOutput.make(row, "chooseall");
if (summaryPage)
UIOutput.make(row, "chooseall");
}
// if no itemid, it's unused. Only canedit people will see it
else if (summaryPage && entry.itemId != null) {
Expand Down

0 comments on commit b45e492

Please sign in to comment.