Skip to content

Commit

Permalink
Fixed issue where redirect was not working after creating new derivat…
Browse files Browse the repository at this point in the history
…ive resource
  • Loading branch information
Shaun McCormick committed Oct 14, 2010
1 parent 13a1abf commit eff4b1d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions core/docs/changelog.txt
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/sections/resource/static/create.js
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/sections/resource/static/update.js
Expand Up @@ -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']
}
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/sections/resource/symlink/create.js
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/sections/resource/symlink/update.js
Expand Up @@ -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']
}
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/sections/resource/weblink/create.js
Expand Up @@ -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)
Expand Down

0 comments on commit eff4b1d

Please sign in to comment.