X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Feducation.func.inc.php;h=9c7ab441d404d8c9192cd07e645674b38be448ef;hb=3964021cac674cc71e9eea3ba55727b9925b418b;hp=16cca5764cc6aa74f2f611071c54f11d028e72c0;hpb=3ffc616138160be0860a9b4b13d55f7ac200ffca;p=platal.git diff --git a/include/education.func.inc.php b/include/education.func.inc.php index 16cca57..9c7ab44 100644 --- a/include/education.func.inc.php +++ b/include/education.func.inc.php @@ -1,6 +1,6 @@ '; - $res = XDB::iterator("SELECT e.id AS id, gc.countryFR AS country, + $html = ''; + $res = XDB::iterator("SELECT e.id AS id, gc.country, IF(CHAR_LENGTH(e.name) > 76, e.abbreviation, e.name) AS name FROM profile_education_enum AS e LEFT JOIN geoloc_countries AS gc ON (e.country = gc.iso_3166_1_a2) WHERE EXISTS (SELECT * FROM profile_education_degree AS d WHERE e.id = d.eduid) - ORDER BY gc.countryFR, e.name"); + ORDER BY gc.country, e.name"); $country = ""; while ($arr_edu = $res->next()) { if ($arr_edu["country"] != $country) { + if ($country) { + $html .= ''; + } $country = $arr_edu["country"]; - $html .= ""; + $html .= ''; } $html .= ''; + } return $html; }