diff --git a/VERSIONS b/VERSIONS index 90142fa46d23b360d0220dcbe5a0427624f2f19b..a4e51397c53acec33d98768d6ba021dc8b3c9cbf 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,3 +1,8 @@ +23/11/2015 - v7.3.30 + + - ticket #5524 : Correction compatibilité php < 5.5 + + 23/11/2015 - v7.3.29 - ticket #32511 : Ajout d'une case à cocher "Brouillon ?" dans le formulaire d'édition d'une newsletter qui permet de la masquer à l'opac. diff --git a/library/Class/Onglet.php b/library/Class/Onglet.php index 0f6689b04cc8a3b127697b901663e6e9fafb2a5a..6f367e725560e355e985e3ee5bb080862276ced3 100644 --- a/library/Class/Onglet.php +++ b/library/Class/Onglet.php @@ -118,7 +118,8 @@ class Class_Onglet { public function hasRecounts($record) { - return !empty(Class_Onglet_Analytics::getRecounts($record)); + $recounts = Class_Onglet_Analytics::getRecounts($record); + return !empty($recounts); } diff --git a/library/startup.php b/library/startup.php index 47dee346b7990e6d4e194d0f439110c950bcd239..88dd7a5da7b58cae7ed3799372a91c9e7273b734 100644 --- a/library/startup.php +++ b/library/startup.php @@ -65,7 +65,7 @@ function defineConstant($name, $value) { function setupConstants() { defineConstant('BOKEH_MAJOR_VERSION','7.3'); - defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.29'); + defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.30'); defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/');