summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/public/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/util.php b/lib/public/util.php
index 9727cfda284..af782b01483 100644
--- a/lib/public/util.php
+++ b/lib/public/util.php
@@ -202,8 +202,8 @@ class Util {
public static function getDefaultEmailAddress($user_part) {
$host_name = self::getServerHostName();
// handle localhost installations
- if ($server_host === 'localhost') {
- $server_host = "example.com";
+ if ($host_name === 'localhost') {
+ $host_name = "example.com";
}
return $user_part.'@'.$host_name;
}