Skip to content

Commit

Permalink
Fix: #0010088: Confirmation Link incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis committed Apr 19, 2009
1 parent 085f672 commit a3ba2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/string_api.php
Expand Up @@ -664,7 +664,7 @@ function string_get_bug_report_page( $p_user_id = null ) {
# return the complete url link to checkin using the confirm_hash
function string_get_confirm_hash_url( $p_user_id, $p_confirm_hash ) {
$t_path = config_get( 'path' );
return $t_path . "verify.php?id=" . string_url( $p_user_id ) . "&confirm_hash=" . string_url( $p_confirm_hash );
return $t_path . "verify.php?id=" . string_url( $p_user_id ) . "&confirm_hash=" . string_url( $p_confirm_hash );
}

# --------------------
Expand Down

0 comments on commit a3ba2c2

Please sign in to comment.