diff --git a/doc/developper/Doxyfile b/doc/developper/Doxyfile index bbe229171..766c242a6 100644 --- a/doc/developper/Doxyfile +++ b/doc/developper/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = noalyss # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = Version-7.2 +PROJECT_NUMBER = Version-8.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/html/image/logo8000.png b/html/image/logo8100.png similarity index 51% rename from html/image/logo8000.png rename to html/image/logo8100.png index ee5fc4bda..da1ccdf25 100644 Binary files a/html/image/logo8000.png and b/html/image/logo8100.png differ diff --git a/html/index.php b/html/index.php index b6ce4ccb4..c8b8b65bd 100644 --- a/html/index.php +++ b/html/index.php @@ -191,7 +191,7 @@ if (isset ($_REQUEST['reconnect']) && isset ($_REQUEST['backurl'])) { } echo ' -NOALYSS +NOALYSS
'. '

Noalyss

'. $goto . diff --git a/html/install.php b/html/install.php index 7e4ff5d8f..a01059dae 100644 --- a/html/install.php +++ b/html/install.php @@ -83,7 +83,7 @@

- NOALYSS + NOALYSS

NOALYSS : comptabilité - accountancy

diff --git a/html/style-classic7.css b/html/style-classic7.css index 331206406..5b9d1852d 100644 --- a/html/style-classic7.css +++ b/html/style-classic7.css @@ -2304,6 +2304,7 @@ div.bxbutton .icon border:0px; height: 18px; color: #f0d19a; + font-size: 87%; } div.bxbutton .icon:hover { diff --git a/include/sql/patch/upgrade151.sql b/include/sql/patch/upgrade151.sql index e182000de..3ba6e77f0 100644 --- a/include/sql/patch/upgrade151.sql +++ b/include/sql/patch/upgrade151.sql @@ -2,6 +2,7 @@ begin; -- improve vw_fiche_attr alter table fiche add column f_enable char(1); update fiche set f_enable=ad_value from fiche_detail as fd1 where fd1.f_id=fiche.f_id and ad_id=54; +update fiche set f_enable='1' where f_enable is null; alter table fiche alter f_enable set not null; alter table fiche add constraint f_enable_ck check (f_enable in ('0','1')); comment on column fiche.f_enable is 'value = 1 if card enable , otherwise 0 ';