Commit 1a840b39704f3512ff13bda35a07b64c1c4a1d29
1 parent
323c5fda
add option to make the mass-actions work again.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5653 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
5 additions
and
1 deletions
browse.php
| ... | ... | @@ -231,7 +231,11 @@ class BrowseDispatcher extends KTStandardDispatcher { |
| 231 | 231 | |
| 232 | 232 | $collection->setOptions($aOptions); |
| 233 | 233 | $collection->setQueryObject(new BrowseQuery("1", $this->oUser, array('ignorepermissions' => false))); |
| 234 | - | |
| 234 | + $collection->setColumnOptions('ktcore.columns.selection', array( | |
| 235 | + 'rangename' => 'selection', | |
| 236 | + 'show_folders' => true, | |
| 237 | + 'show_document' => true, | |
| 238 | + )); | |
| 235 | 239 | |
| 236 | 240 | $oTemplating =& KTTemplating::getSingleton(); |
| 237 | 241 | $oTemplate = $oTemplating->loadTemplate("kt3/browse"); | ... | ... |