X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fapplis.func.inc.php;h=4d1250173dfda0dbdf2e9d5f6638bd46446b5952;hb=db5db6c8f01cb894fb5f95e7bcef2723e0b1f7e8;hp=c3360eff601068024f7641847c5400626dd64a0c;hpb=08cce2ff528b38bde27cdec6d6bc28d6af4a42d4;p=platal.git diff --git a/include/applis.func.inc.php b/include/applis.func.inc.php index c3360ef..4d12501 100644 --- a/include/applis.func.inc.php +++ b/include/applis.func.inc.php @@ -22,7 +22,6 @@ global $page; function applis_options($current=0) { - global $globals; $html = ''; $res = XDB::iterator("select * from applis_def order by text"); while ($arr_appli = $res->next()) { @@ -45,7 +44,6 @@ $page->register_function('applis_options','_applis_options_smarty'); /** affiche un Array javascript contenant les types de chaque appli */ function applis_type(){ - global $globals; $html = ""; $res=XDB::iterRow("select type from applis_def order by text"); if (list($appli_type) = $res->next()) { @@ -61,7 +59,6 @@ $page->register_function('applis_type','applis_type'); /** affiche tous les types possibles d'applis */ function applis_type_all(){ - global $globals; $res = XDB::query("show columns from applis_def like 'type'"); $arr_appli = $res->fetchOneAssoc(); return str_replace(")","",str_replace("set(","",$arr_appli["Type"]));