mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
98e7615c5b
|
@ -39,6 +39,7 @@
|
|||
- add list of currently logged in users in menu
|
||||
- the owner of a document can see even none public attachments
|
||||
- uploading multiple files can be turned off
|
||||
- add list of tasks in menu
|
||||
- merged changes from 5.0.12
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
|
|
@ -1427,6 +1427,8 @@ SeedDMS_Core_DMS::getDuplicateDocumentContent() returns complete document
|
|||
- SeedDMS_Core_DMS::filterDocumentFiles() returns also documents which are not public
|
||||
if the owner tries to access them
|
||||
- Check return value of onPreRemove[Document|Folder], return from calling method if bool
|
||||
- Add SeedDMS_Core_DMS::getDocumentList()
|
||||
- Limit number of duplicate files to 1000
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
|
|
|
@ -902,9 +902,12 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
}
|
||||
break;
|
||||
default:
|
||||
$this->showTextField("extensions[".$extname."][".$confkey."]", isset($settings->_extensions[$extname][$confkey]) ? $settings->_extensions[$extname][$confkey] : '', '', '');
|
||||
/*
|
||||
?>
|
||||
<input type="text" name="<?php echo "extensions[".$extname."][".$confkey."]"; ?>" title="<?php echo isset($conf['help']) ? $conf['help'] : ''; ?>" value="<?php if(isset($settings->_extensions[$extname][$confkey])) echo $settings->_extensions[$extname][$confkey]; ?>" <?php echo isset($conf['size']) ? 'size="'.$conf['size'].'"' : ""; ?>" />
|
||||
<?php
|
||||
*/
|
||||
}
|
||||
?>
|
||||
</td></tr>
|
||||
|
|
Loading…
Reference in New Issue
Block a user