Skip to content

Commit

Permalink
Merge pull request #94 from jpdevries/processor-2.3
Browse files Browse the repository at this point in the history
Fix processor not found error on Article update
  • Loading branch information
theboxer committed Jul 16, 2014
2 parents 9b45f6a + 4c9cb4a commit 8ab563e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _build/build.transport.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/* define package */
define('PKG_NAME','Articles');
define('PKG_NAME_LOWER',strtolower(PKG_NAME));
define('PKG_VERSION','1.7.7');
define('PKG_VERSION','1.7.8');
define('PKG_RELEASE','pl');

/* define sources */
Expand Down
2 changes: 1 addition & 1 deletion assets/components/articles/js/article/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Ext.extend(Articles.page.UpdateArticle,MODx.page.UpdateResource,{
var btns = [];
if (cfg.canSave == 1) {
btns.push({
process: 'update'
process: (MODx.config.connector_url) ? 'resource/update' : 'update'
,text: _('save')
,method: 'remote'
,checkDirty: cfg.richtext || MODx.request.activeSave == 1 ? false : true
Expand Down
4 changes: 4 additions & 0 deletions core/components/articles/docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog for Articles.

Articles 1.7.8
===============================
- #92 Fix Articles save on update in Revolution 2.3

Articles 1.7.7
===============================
- #90 Fix Articles in Revolution 2.3
Expand Down

0 comments on commit 8ab563e

Please sign in to comment.