mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-09-08 19:08:57 +00:00
???
This commit is contained in:
parent
063ab39f62
commit
abf9465e31
|
@ -26,10 +26,10 @@
|
|||
--------------------------------------------------------------------------------
|
||||
- fix for CVE-2019-12744 (Remote Command Execution through unvalidated
|
||||
file upload), add .htaccess file to data directory, better documentation
|
||||
for installing seeddms
|
||||
for installing seeddms
|
||||
- fix for CVE-2019-12745 (Persistent or Stored XSS in UsrMgr) and
|
||||
CVE-2019-12801 (Persistent or Stored XSS in GroupMgr), propperly escape
|
||||
strings used in Select2 js library used by UsrMgr and GroupMgr
|
||||
strings used in Select2 js library used by UsrMgr and GroupMgr
|
||||
- do not show attributes in search results in extra column anymore
|
||||
- fix setting language during login (Closes #437)
|
||||
- fix indexing documents even if no preIndexDocument hook is set (Closes #437)
|
||||
|
@ -84,7 +84,7 @@
|
|||
- catch error when updating a document fails (Closes #410)
|
||||
- use always 'Send from' address as Return-Path when set, only if not set the
|
||||
logged in user's email will be used (Closes #418)
|
||||
- show the debug output when sending a test mail
|
||||
- show the debug output when sendind a test mail
|
||||
- add hooks add hooks folderListPreContent and folderListPostContent in
|
||||
class.ViewFolder.php
|
||||
- do not redirect to ForcePassword page if out.Logout.php was opened. This
|
||||
|
|
8
Makefile
8
Makefile
|
@ -7,7 +7,8 @@ NODISTFILES=utils/importmail.php utils/seedddms-importmail utils/remote-email-up
|
|||
EXTENSIONS := \
|
||||
dynamic_content.tar.gz\
|
||||
login_action.tar.gz\
|
||||
example.tar.gz
|
||||
example.tar.gz\
|
||||
tbs_template.tar.gz
|
||||
|
||||
PHPDOC=~/Downloads/phpDocumentor-2.8.1/bin/phpdoc
|
||||
|
||||
|
@ -39,10 +40,12 @@ webapp:
|
|||
repository:
|
||||
mkdir -p tmp/seeddms-repository-$(VERSION)
|
||||
cp -a repository/www repository/utils repository/doc tmp/seeddms-repository-$(VERSION)
|
||||
rm -f tmp/seeddms-repository/utils/update-repository.log
|
||||
mkdir -p tmp/seeddms-repository-$(VERSION)/files
|
||||
mkdir -p tmp/seeddms-repository-$(VERSION)/accounts
|
||||
cp -a repository/files/.htaccess tmp/seeddms-repository-$(VERSION)/files
|
||||
cp -a repository/accounts/.htaccess tmp/seeddms-repository-$(VERSION)/accounts
|
||||
cp inc/inc.ClassExtensionMgr.php tmp/seeddms-repository-$(VERSION)/utils
|
||||
(cd tmp; tar --exclude=.svn -czvf ../seeddms-repository-$(VERSION).tar.gz seeddms-repository-$(VERSION))
|
||||
rm -rf tmp
|
||||
|
||||
|
@ -55,6 +58,9 @@ example.tar.gz: ext/example
|
|||
login_action.tar.gz: ext/login_action
|
||||
tar czvf login_action.tar.gz ext/login_action
|
||||
|
||||
tbs_template.tar.gz: ext/tbs_template
|
||||
tar czvf tbs_template.tar.gz ext/tbs_template
|
||||
|
||||
extensions: $(EXTENSIONS)
|
||||
|
||||
doc:
|
||||
|
|
Loading…
Reference in New Issue
Block a user