From 544fa59832fcbdc996b64f34408afe5d311c43bc Mon Sep 17 00:00:00 2001 From: mokaddem Date: Wed, 23 Sep 2020 17:33:07 +0200 Subject: [PATCH] chg: [galaxy] Fixed baseurl typo --- app/Controller/GalaxiesController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Controller/GalaxiesController.php b/app/Controller/GalaxiesController.php index 064cef98a..425746428 100644 --- a/app/Controller/GalaxiesController.php +++ b/app/Controller/GalaxiesController.php @@ -331,12 +331,12 @@ class GalaxiesController extends AppController $items = array(); $items[] = array( 'name' => __('All namespaces'), - 'value' => $baseurl . "/galaxies/selectGalaxy/" . $target_id . '/' . $target_type . '/0' . '/' . $noGalaxyMatrix . '/local:' . $local + 'value' => $this->baseurl . "/galaxies/selectGalaxy/" . $target_id . '/' . $target_type . '/0' . '/' . $noGalaxyMatrix . '/local:' . $local ); foreach ($namespaces as $namespace) { $items[] = array( 'name' => $namespace, - 'value' => $baseurl . "/galaxies/selectGalaxy/" . $target_id . '/' . $target_type . '/' . $namespace . '/' . $noGalaxyMatrix . '/local:' . $local + 'value' => $this->baseurl . "/galaxies/selectGalaxy/" . $target_id . '/' . $target_type . '/' . $namespace . '/' . $noGalaxyMatrix . '/local:' . $local ); }