summaryrefslogtreecommitdiffstats
path: root/controller/feedcontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/feedcontroller.php')
-rw-r--r--controller/feedcontroller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller/feedcontroller.php b/controller/feedcontroller.php
index 5489f555c..eb172debb 100644
--- a/controller/feedcontroller.php
+++ b/controller/feedcontroller.php
@@ -213,7 +213,7 @@ class FeedController extends Controller {
* @param int $feedId
* @param string $feedTitle
*/
- public function rename() {
+ public function rename($feedId, $feedTitle) {
try {
$this->feedBusinessLayer->rename($feedId, $feedTitle, $this->userId);
} catch(BusinessLayerException $ex) {
@@ -265,7 +265,7 @@ class FeedController extends Controller {
*
* @param int $feedId
*/
- public function restore(){
+ public function restore($feedId){
try {
$this->feedBusinessLayer->unmarkDeleted($feedId, $this->userId);
} catch(BusinessLayerException $ex) {