Skip to content

Commit

Permalink
fix #666
Browse files Browse the repository at this point in the history
.
  • Loading branch information
marjanapesic committed Feb 6, 2015
1 parent 4c706f5 commit a0e12ec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -180,7 +180,7 @@ public function getUserValue($user, $raw = true) {
if (!$raw && $this->validator == self::VALIDATOR_EMAIL) {
return HHtml::link($value, $value);
} elseif (!$raw && $this->validator == self::VALIDATOR_URL) {
return HHtml::link($value, $value);
return HHtml::link($value, $value, array('target'=> '_blank'));
}

return $value;
Expand Down

0 comments on commit a0e12ec

Please sign in to comment.