From 372140d6e85106382a1aa0470f901a08b0a57979 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Wed, 19 Feb 2014 11:02:38 -0500 Subject: [PATCH] Local url corruption fix in Boostrap for the Create Account link. --- themes/bootstrap/templates/Auth/AbstractBase/login.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap/templates/Auth/AbstractBase/login.phtml b/themes/bootstrap/templates/Auth/AbstractBase/login.phtml index 5b4bfeaa72a..fb6ad254211 100644 --- a/themes/bootstrap/templates/Auth/AbstractBase/login.phtml +++ b/themes/bootstrap/templates/Auth/AbstractBase/login.phtml @@ -8,7 +8,7 @@ <div class="controls"> <input class="btn btn-primary" type="submit" name="processLogin" value="Login"> <? if ($account->supportsCreation()): ?> - <a class="btn btn-link" href="/digitaldev/MyResearch/Account">Create New Account</a> + <a class="btn btn-link" href="<?=$this->url('myresearch-account') ?>">Create New Account</a> <? endif; ?> </div> </div> -- GitLab