fix call of folderListRow()

This commit is contained in:
Uwe Steinmann 2020-03-26 09:45:14 +01:00
parent 2a551cf990
commit f201ef9aa3
2 changed files with 2 additions and 2 deletions

View File

@ -755,7 +755,7 @@ $(document).ready( function() {
$extracontent = array();
if($attrstr)
$extracontent['bottom_title'] = '<br />'.$this->printPopupBox('<span class="btn btn-mini btn-default">'.getMLText('attributes').'</span>', $attrstr, true);
print $this->folderListRow($folder, false, $extracontent);
print $this->folderListRow($folder, false, $extracontent, SeedDMS_Core_AttributeDefinitionGroup::show_search);
}
}
$txt = $this->callHook('folderListFooter', null);

View File

@ -382,7 +382,7 @@ $('body').on('click', '.order-btn', function(ev) {
if(is_string($txt))
echo $txt;
else {
echo $this->folderListRow($subFolder, SeedDMS_Core_AttributeDefinitionGroup::show_list);
echo $this->folderListRow($subFolder, false, array(), SeedDMS_Core_AttributeDefinitionGroup::show_list);
}
}
$i++;