diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-10 22:08:35 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-10 22:08:35 -0400 |
commit | a809dd485c73b55646a6b915527da99da14fb869 (patch) | |
tree | 5f42485aa37c724d9a40933b5a859d29fee1640f /views/signup/index.html.php | |
parent | 67845c588baa92bcc6d7003508e2509190d58770 (diff) | |
download | otakuhub-a809dd485c73b55646a6b915527da99da14fb869.tar.xz |
Fixed ray's derp up :P
Diffstat (limited to 'views/signup/index.html.php')
-rw-r--r-- | views/signup/index.html.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/views/signup/index.html.php b/views/signup/index.html.php index 6a00ff2..f7929f8 100644 --- a/views/signup/index.html.php +++ b/views/signup/index.html.php @@ -3,7 +3,10 @@ $this->styles($this->html->style("/css/login_signup.css")); if (isset($key)) { - echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>"; + echo "Confirmation Link: "; + echo $this->html->link("Link", array('controller' => 'signup', + 'action' => 'confirm', + 'args' => $key->key)); } else { |