diff --git a/core/docs/changelog.txt b/core/docs/changelog.txt index 00375c246b9..e2de4e6ebd0 100755 --- a/core/docs/changelog.txt +++ b/core/docs/changelog.txt @@ -4,6 +4,7 @@ development release, and is only shown to give an idea of what's currently in th MODx Revolution 2.0.4-pl ==================================== +- Fixed issue where redirect was not working after creating new derivative resource - [#2485] Fixed issue where placeholder was in duplicated Access Policy - [#2492] Fixed reference in menu to bugs.modx.com - [#2486] Removed hardcoded language reference in lexicon load in access permissions getList processor diff --git a/manager/assets/modext/sections/resource/static/create.js b/manager/assets/modext/sections/resource/static/create.js index bb7983fbe15..dbada26f555 100644 --- a/manager/assets/modext/sections/resource/static/create.js +++ b/manager/assets/modext/sections/resource/static/create.js @@ -14,8 +14,8 @@ MODx.page.CreateStatic = function(config) { ,id: 'modx-page-update-resource' ,which_editor: 'none' ,actions: { - 'new': MODx.action['resource/staticresource/create'] - ,edit: MODx.action['resource/staticresource/update'] + 'new': MODx.action['resource/create'] + ,edit: MODx.action['resource/update'] ,cancel: MODx.action['welcome'] } ,buttons: this.getButtons(config) diff --git a/manager/assets/modext/sections/resource/static/update.js b/manager/assets/modext/sections/resource/static/update.js index e971c62ab68..78389fa6d29 100644 --- a/manager/assets/modext/sections/resource/static/update.js +++ b/manager/assets/modext/sections/resource/static/update.js @@ -19,8 +19,8 @@ MODx.page.UpdateStatic = function(config) { ,formpanel: 'modx-panel-resource' ,id: 'modx-page-update-resource' ,actions: { - 'new': MODx.action['resource/staticresource/create'] - ,edit: MODx.action['resource/staticresource/update'] + 'new': MODx.action['resource/create'] + ,edit: MODx.action['resource/update'] ,preview: MODx.action['resource/preview'] ,cancel: MODx.action['welcome'] } diff --git a/manager/assets/modext/sections/resource/symlink/create.js b/manager/assets/modext/sections/resource/symlink/create.js index 504bd3fb060..2cad0076fb4 100644 --- a/manager/assets/modext/sections/resource/symlink/create.js +++ b/manager/assets/modext/sections/resource/symlink/create.js @@ -14,8 +14,8 @@ MODx.page.CreateSymLink = function(config) { ,id: 'modx-page-update-resource' ,which_editor: 'none' ,actions: { - 'new': MODx.action['resource/symlink/create'] - ,edit: MODx.action['resource/symlink/update'] + 'new': MODx.action['resource/create'] + ,edit: MODx.action['resource/update'] ,cancel: MODx.action['welcome'] } ,buttons: this.getButtons(config) diff --git a/manager/assets/modext/sections/resource/symlink/update.js b/manager/assets/modext/sections/resource/symlink/update.js index 28a02e005f7..fa7c96b9a83 100644 --- a/manager/assets/modext/sections/resource/symlink/update.js +++ b/manager/assets/modext/sections/resource/symlink/update.js @@ -15,8 +15,8 @@ MODx.page.UpdateSymLink = function(config) { ,formpanel: 'modx-panel-resource' ,id: 'modx-page-update-resource' ,actions: { - 'new': MODx.action['resource/symlink/create'] - ,edit: MODx.action['resource/symlink/update'] + 'new': MODx.action['resource/create'] + ,edit: MODx.action['resource/update'] ,preview: MODx.action['resource/preview'] ,cancel: MODx.action['welcome'] } diff --git a/manager/assets/modext/sections/resource/weblink/create.js b/manager/assets/modext/sections/resource/weblink/create.js index e90eb7294cc..afacfd8be1f 100644 --- a/manager/assets/modext/sections/resource/weblink/create.js +++ b/manager/assets/modext/sections/resource/weblink/create.js @@ -14,8 +14,8 @@ MODx.page.CreateWebLink = function(config) { ,id: 'modx-page-update-resource' ,which_editor: 'none' ,actions: { - 'new': MODx.action['resource/weblink/create'] - ,edit: MODx.action['resource/weblink/update'] + 'new': MODx.action['resource/create'] + ,edit: MODx.action['resource/update'] ,cancel: MODx.action['welcome'] } ,buttons: this.getButtons(config)