there is no preselected link type

This commit is contained in:
Uwe Steinmann 2024-06-21 11:55:57 +02:00
parent 36aedc8fd7
commit 75a8a52028

View File

@ -2023,7 +2023,7 @@ $(document).ready( function() {
<?php
$options = [];
foreach($dms->getLinkTypes() as $linktype) {
$options[] = array($linktype->getID(), htmlspecialchars($linktype->getName()), $sellinktype && $linktype->getID()==$sellinktype->getID(), array(/*array('data-subtitle', $linktype->countDocumentLinksByType().' '.getMLText('documents'))*/));
$options[] = array($linktype->getID(), htmlspecialchars($linktype->getName()), false, array(/*array('data-subtitle', $linktype->countDocumentLinksByType().' '.getMLText('documents'))*/));
}
$this->formField(
getMLText("global_link_types"),