From 0c924d36cbf8396b34ba9df0efec5c93e1825ad5 Mon Sep 17 00:00:00 2001
From: Michael Vogel <icarus@dabo.de>
Date: Thu, 24 Dec 2015 12:56:27 +0100
Subject: [PATCH] Bugfix: The location wasn't parsed through bbcode

---
 include/identity.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/identity.php b/include/identity.php
index d87d891a5c..2dbf34587d 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -363,8 +363,8 @@ if(! function_exists('profile_sidebar')) {
 		if (isset($p["about"]))
 			$p["about"] = bbcode($p["about"]);
 
-		if (isset($p["location"]))
-			$p["location"] = bbcode($p["location"]);
+		if (isset($p["address"]))
+			$p["address"] = bbcode($p["address"]);
 
 		if (isset($p["photo"]))
 			$p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL);
-- 
2.39.5