web: fix broken link to change-password form if SECURE_URL_BASE not defined

This commit is contained in:
David Anderson 2013-05-28 23:19:18 -07:00
parent 48e044fa76
commit 286646554e
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function show_user_info_private($user) {
row2(tra("%1 member since", PROJECT), date_str($user->create_time));
$url_tokens = url_tokens($user->authenticator);
row2(tra("Change"), "<a href=\"edit_email_form.php\">".tra("email address")."</a>
&middot; <a href=\"".SECURE_URL_BASE."/edit_passwd_form.php\">".tra("password")."</a>
&middot; <a href=\"".secure_url_base()."/edit_passwd_form.php\">".tra("password")."</a>
&middot; <a href=\"edit_user_info_form.php?$url_tokens\">".tra("other account info")."</a>"
);
row2(tra("User ID")."<br/><span class=\"note\">".tra("Used in community functions")."</span>", $user->id);