From: skodak Date: Mon, 16 Jun 2008 11:18:33 +0000 (+0000) Subject: MDL-15251 fixed syntax errror X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=12ad6ebaa8dc593c648d29a46e3d384e822a48bc;p=moodle.git MDL-15251 fixed syntax errror --- 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];