mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-28 20:47:28 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
7c29d1d4e8
|
@ -235,6 +235,7 @@
|
||||||
- call new hook 'cleanUpDocument' after uploading or updating a document
|
- call new hook 'cleanUpDocument' after uploading or updating a document
|
||||||
- pass 'add' or 'update' to hook 'addDocumentContentFile'
|
- pass 'add' or 'update' to hook 'addDocumentContentFile'
|
||||||
- more access restrictions on files in extensions
|
- more access restrictions on files in extensions
|
||||||
|
- fix check of extensions available in repository
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.24
|
Changes in version 5.1.24
|
||||||
|
|
|
@ -117,7 +117,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
|
||||||
print "</tr></thead><tbody>\n";
|
print "</tr></thead><tbody>\n";
|
||||||
$list = $extmgr->getExtensionListByName($extname);
|
$list = $extmgr->getExtensionListByName($extname);
|
||||||
foreach($list as $re) {
|
foreach($list as $re) {
|
||||||
$extmgr->checkExtension($re);
|
$extmgr->checkExtensionByName($re['name'], $re);
|
||||||
$checkmsgs = $extmgr->getErrorMsgs();
|
$checkmsgs = $extmgr->getErrorMsgs();
|
||||||
$needsupdate = !isset($extconf[$re['name']]) || SeedDMS_Extension_Mgr::cmpVersion($re['version'], $extconf[$re['name']]['version']) > 0;
|
$needsupdate = !isset($extconf[$re['name']]) || SeedDMS_Extension_Mgr::cmpVersion($re['version'], $extconf[$re['name']]['version']) > 0;
|
||||||
echo "<tr";
|
echo "<tr";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user