]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-15251 fixed syntax errror
authorskodak <skodak>
Mon, 16 Jun 2008 11:18:33 +0000 (11:18 +0000)
committerskodak <skodak>
Mon, 16 Jun 2008 11:18:33 +0000 (11:18 +0000)
user/view.php

index bb01057b57402025afed8b4992c79d33b4222b01..ba0935db7811cc6197936a4d9767da31a830c6a9 100644 (file)
         }
         $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];