From 2c2650b2f36a849f3e1c3f4ccd93070defeb3fed Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 8 Mar 2017 22:18:04 +0100 Subject: [PATCH] Fix echoChangedReleaseName releases_id error --- misc/testing/Various/renametopre.php | 2 +- nntmux/RequestIDLocal.php | 2 +- nntmux/RequestIDWeb.php | 2 +- nntmux/processing/post/ProcessAdditional.php | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/misc/testing/Various/renametopre.php b/misc/testing/Various/renametopre.php index 468fc2e36..8abcf231b 100644 --- a/misc/testing/Various/renametopre.php +++ b/misc/testing/Various/renametopre.php @@ -190,7 +190,7 @@ function preName($argv, $argc) 'new_category' => $newcatname, 'old_category' => $oldcatname, 'group' => $groupname, - 'release_id' => $row["id"], + 'releases_id' => $row["id"], 'method' => 'misc/testing/Various/renametopre.php' ] ); diff --git a/nntmux/RequestIDLocal.php b/nntmux/RequestIDLocal.php index 0e09dd0f2..8738e96a0 100755 --- a/nntmux/RequestIDLocal.php +++ b/nntmux/RequestIDLocal.php @@ -296,7 +296,7 @@ class RequestIDLocal extends RequestID 'new_category' => $this->category->getNameByID($determinedCat), 'old_category' => $this->category->getNameByID($this->_release['categories_id']), 'group' => $this->_release['groupname'], - 'release_id' => $this->_release['id'], + 'releases_id' => $this->_release['id'], 'method' => 'RequestIDLocal' ) ); diff --git a/nntmux/RequestIDWeb.php b/nntmux/RequestIDWeb.php index 4102a946a..8a5d9175f 100755 --- a/nntmux/RequestIDWeb.php +++ b/nntmux/RequestIDWeb.php @@ -323,7 +323,7 @@ class RequestIDWeb extends RequestID 'new_category' => $this->category->getNameByID($determinedCategory), 'old_category' => '', 'group' => $this->_release['groupname'], - 'release_id' => $this->_release['id'], + 'releases_id' => $this->_release['id'], 'method' => 'RequestID->updateRelease' ) ); diff --git a/nntmux/processing/post/ProcessAdditional.php b/nntmux/processing/post/ProcessAdditional.php index 4e163402f..e1e838cb9 100755 --- a/nntmux/processing/post/ProcessAdditional.php +++ b/nntmux/processing/post/ProcessAdditional.php @@ -1832,7 +1832,7 @@ class ProcessAdditional 'new_category' => $newCat, 'old_category' => $rQuery['id'], 'group' => $rQuery['groups_id'], - 'release_id' => $this->_release['id'], + 'releases_id' => $this->_release['id'], 'method' => 'ProcessAdditional->_getAudioInfo' ] ); @@ -2411,7 +2411,7 @@ class ProcessAdditional 'new_category' => $newCategory, 'old_category' => $this->_release['categories_id'], 'group' => $this->_release['groups_id'], - 'release_id' => $this->_release['id'], + 'releases_id' => $this->_release['id'], 'method' => 'ProcessAdditional->_processU4ETitle' ] );