diff --git a/doc/developper/Doxyfile b/doc/developper/Doxyfile index 1871a7a24..e436bbdea 100644 --- a/doc/developper/Doxyfile +++ b/doc/developper/Doxyfile @@ -173,7 +173,7 @@ TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- -GENERATE_LATEX = YES +GENERATE_LATEX = NO LATEX_OUTPUT = latex LATEX_CMD_NAME = latex MAKEINDEX_CMD_NAME = makeindex diff --git a/html/admin/setup.php b/html/admin/setup.php index f7de9ac5f..b5d41b17c 100644 --- a/html/admin/setup.php +++ b/html/admin/setup.php @@ -490,6 +490,9 @@ if ( DEBUG=='false' ) ob_start(); if ( GetVersion($db) == 22 ) { ExecuteScript($db,'sql/patch/upgrade22.sql'); } // version + if ( GetVersion($db) == 23 ) { + ExecuteScript($db,'sql/patch/upgrade23.sql'); + } // version if ( DEBUG == 'false') ob_end_clean(); }//for @@ -593,6 +596,9 @@ if (DEBUG == 'false' ) ob_start(); if ( GetVersion($db) == 22 ) { ExecuteScript($db,'sql/patch/upgrade22.sql'); } // version + if ( GetVersion($db) == 23 ) { + ExecuteScript($db,'sql/patch/upgrade23.sql'); + } // version if ( DEBUG == 'false') ob_end_clean(); } diff --git a/html/index.php b/html/index.php index 0b48de808..b8965ebfd 100644 --- a/html/index.php +++ b/html/index.php @@ -76,7 +76,7 @@ BODY { -Version 2.1.1 +Version 2.1.2

Il est conseillé de ne PAS utiliser Internet Explorer.

diff --git a/sql/upgrade.sql b/sql/upgrade.sql index b655f26d6..e69de29bb 100644 --- a/sql/upgrade.sql +++ b/sql/upgrade.sql @@ -1,2 +0,0 @@ -alter table import_tmp add jr_rapt text; -create unique index fd_id_ad_id_x on jnt_fic_attr( fd_id,ad_id);