X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.select_nat.php;h=a9720ed720b708c5e8b4fceaa69ed362978f8ef3;hb=c76545c351fae4e2298624ff9ee5bf854dc5a5b6;hp=9a73f39268465f6cdc578156c364004ef3500dbc;hpb=34465ab035104f739a54ec62660f04f874448627;p=platal.git diff --git a/plugins/function.select_nat.php b/plugins/function.select_nat.php index 9a73f39..a9720ed 100644 --- a/plugins/function.select_nat.php +++ b/plugins/function.select_nat.php @@ -30,10 +30,10 @@ function select_nat($valeur, $pad=false) { // on ajoute une entree vide si $pad est vrai $html = ""; if ($pad) { - $html .= sprintf("\n", ($valeur ? $sel : "")); + $html .= sprintf("\n", ($valeur ? $sel : "")); } while (list($my_id, $my_text) = $res->next()) { - $html .= sprintf("\n", $my_id, ($valeur==$my_id ? $sel : ""), $my_text); + $html .= sprintf("\n", $my_id, ($valeur==$my_id ? $sel : ""), $my_text?$my_text:" "); } return $html;