IDEMPIERE-5116 Recent Item on System Configurator revealing too much information (#1074)

This commit is contained in:
Carlos Ruiz 2021-12-21 14:37:09 +01:00 committed by GitHub
parent 9716c32de4
commit 7c94192533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-5116 Recent Item on System Configurator revealing too much information
-- Dec 20, 2021, 8:27:30 PM CET
UPDATE AD_Window SET TitleLogic='@Name@',Updated=TO_DATE('2021-12-20 20:27:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=50006
;
SELECT register_migration_script('202112202038_IDEMPIERE-5116.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-5116 Recent Item on System Configurator revealing too much information
-- Dec 20, 2021, 8:27:30 PM CET
UPDATE AD_Window SET TitleLogic='@Name@',Updated=TO_TIMESTAMP('2021-12-20 20:27:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=50006
;
SELECT register_migration_script('202112202038_IDEMPIERE-5116.sql') FROM dual
;