diff --git a/controllers/approving.php b/controllers/approving.php index 4e8ce0bdee3464033a644ee1aa22db5d0faca972..8c348f58771ae8ae368bd70214015c01178e1a83 100644 --- a/controllers/approving.php +++ b/controllers/approving.php @@ -65,7 +65,7 @@ class ApprovingController extends PluginController { ); PageLayout::postMessage(MessageBox::success(_("Review wurde gespeichert."))); - $this->redirect("pluginmarket/approving/overview"); + $this->redirect('approving/overview'); } } \ No newline at end of file diff --git a/controllers/myplugins.php b/controllers/myplugins.php index 18b3958089aa9c4db4694e586c906c6606b6ff64..5c511d6d757c4baf7e4d7ceb9566c4c7558d8910 100644 --- a/controllers/myplugins.php +++ b/controllers/myplugins.php @@ -135,7 +135,7 @@ class MypluginsController extends PluginController { } } PageLayout::postMessage(MessageBox::success(_("Plugin wurde gespeichert."))); - $this->redirect("pluginmarket/presenting/details/".$this->marketplugin->getId()); + $this->redirect('presenting/details/' . $this->marketplugin->getId()); } public function save_release_action() { @@ -158,7 +158,7 @@ class MypluginsController extends PluginController { $this->release->store(); PageLayout::postMessage(MessageBox::success(_("Release wurde gespeichert."))); - $this->redirect("pluginmarket/presenting/details/".$this->release->plugin->getId()); + $this->redirect('presenting/details/' . $this->release->plugin->getId()); } } \ No newline at end of file diff --git a/controllers/presenting.php b/controllers/presenting.php index 942cf13455f91028b422b4d4bb697eeb4a57c671..a2b341b1ca059dcb4a990f94a2d65c3f2f7de349 100644 --- a/controllers/presenting.php +++ b/controllers/presenting.php @@ -106,7 +106,7 @@ class PresentingController extends PluginController { if (Request::isPost() && Request::submitted("delete_plugin") && $this->marketplugin->isRootable()) { $this->marketplugin->delete(); PageLayout::postMessage(MessageBox::success(_("Plugin wurde gel�scht."))); - $this->redirect("pluginmarket/presenting/overview"); + $this->redirect('presenting/overview'); } } @@ -161,7 +161,7 @@ class PresentingController extends PluginController { ); PageLayout::postMessage(MessageBox::success(_("Review/Bewertung wurde gespeichert."))); - $this->redirect("pluginmarket/presenting/details/".$plugin_id); + $this->redirect('presenting/details/' . $plugin_id); } public function download_action($release) {