From 12ad6ebaa8dc593c648d29a46e3d384e822a48bc Mon Sep 17 00:00:00 2001 From: skodak Date: Mon, 16 Jun 2008 11:18:33 +0000 Subject: [PATCH] MDL-15251 fixed syntax errror --- user/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/view.php b/user/view.php index bb01057b57..ba0935db78 100644 --- a/user/view.php +++ b/user/view.php @@ -218,7 +218,7 @@ } $countries = get_list_of_countries(); if (!empty($countries[$user->country]) && !isset($hiddenfields['country'])) { - if ($user->city && !isset($hiddenfields['city'] && !isset($hiddenfields['country'])) { + if ($user->city && !isset($hiddenfields['city']) && !isset($hiddenfields['country'])) { $location .= ', '; } $location .= $countries[$user->country]; -- 2.39.5