From 652b49aa14326a88ba30704e1d4b43684366aa6c Mon Sep 17 00:00:00 2001 From: Vincent Rioux Date: Fri, 20 Sep 2019 16:11:48 -0400 Subject: [PATCH 1/3] Update registry_edit.php Fix baseurlpath ends with trailing slash --- templates/registry_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/registry_edit.php b/templates/registry_edit.php index 79ab987..280f2c8 100644 --- a/templates/registry_edit.php +++ b/templates/registry_edit.php @@ -5,7 +5,7 @@ $this->data['head'] = '' . "\n"; $this->includeAtTemplateBase('includes/header.php'); -$moduleurlpath = '/' . $this->data['baseurlpath'].'/module.php/oauth2/'; +$moduleurlpath = '/' . $this->data['baseurlpath'].'module.php/oauth2/'; $page = <<< EOD

Oauth2 Client Registry

From d9cb910b2d68fdf0a039d6dd4367cc8c38cd2a4e Mon Sep 17 00:00:00 2001 From: Vincent Rioux Date: Fri, 20 Sep 2019 16:20:41 -0400 Subject: [PATCH 2/3] Update registry_new.php Trailing slash in baseurlpath --- templates/registry_new.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/registry_new.php b/templates/registry_new.php index 2b61784..dc62e70 100644 --- a/templates/registry_new.php +++ b/templates/registry_new.php @@ -5,7 +5,7 @@ $this->data['head'] = '' . "\n"; $this->includeAtTemplateBase('includes/header.php'); -$moduleurlpath = '/' . $this->data['baseurlpath'].'/module.php/oauth2/'; +$moduleurlpath = '/' . $this->data['baseurlpath'].'module.php/oauth2/'; $page = <<< EOD

Oauth2 Client Registry

From dad180fb94b2e97291b70dc01999b2d5c4c49c47 Mon Sep 17 00:00:00 2001 From: Vincent Rioux Date: Fri, 20 Sep 2019 16:21:14 -0400 Subject: [PATCH 3/3] Update registry_list.php Trailing slash in baseurlpath --- templates/registry_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/registry_list.php b/templates/registry_list.php index 2a7d21f..de22d85 100644 --- a/templates/registry_list.php +++ b/templates/registry_list.php @@ -4,7 +4,7 @@ $this->data['head'] = '' . "\n"; $this->includeAtTemplateBase('includes/header.php'); -$moduleurlpath = '/' . $this->data['baseurlpath'].'/module.php/oauth2/'; +$moduleurlpath = '/' . $this->data['baseurlpath'].'module.php/oauth2/'; if (!empty($this->data['clients'])) { $clients = [];