diff --git a/bin/php/report.php b/bin/php/report.php
index bfaceba..1704d5b 100644
--- a/bin/php/report.php
+++ b/bin/php/report.php
@@ -8,7 +8,7 @@
* also this script uses a custom autoloader for php classes
*
* @author G. Giunta
- * @copyright (C) G. Giunta 2012-2019
+ * @copyright (C) G. Giunta 2012-2020
* @license Licensed under GNU General Public License v2.0. See file license.txt
*
* @todo add options to let users to select which tests to run when running status report (ALL by default)
diff --git a/classes/contentstatsgatherer.php b/classes/contentstatsgatherer.php
index 8d25a87..180f37e 100644
--- a/classes/contentstatsgatherer.php
+++ b/classes/contentstatsgatherer.php
@@ -2,7 +2,7 @@
/**
*
* @author G. Giunta
- * @copyright (C) G. Giunta 2012-2019
+ * @copyright (C) G. Giunta 2012-2020
* @license Licensed under GNU General Public License v2.0. See file license.txt
*
* @todo add more classes of content that have no stats in main admin interface
@@ -38,6 +38,7 @@ static function gather()
'Information Collections' => array( 'table' => 'ezinfocollection' ),
'Pending notification events' => array( 'table' => 'eznotificationevent', 'wherecondition' => 'status = 0' ),
'Objects pending indexation' => array( 'table' => 'ezpending_actions', 'wherecondition' => "action = 'index_object'" ),
+ 'Objects pending subtree indexation (ezfind)' => array( 'table' => 'ezpending_actions', 'wherecondition' => "action = 'index_subtree'" ),
'Binary files (content)' => array( 'table' => 'ezbinaryfile' ),
'Image files (content)' => array( 'table' => 'ezimagefile' ),
'Media files (content)' => array( 'table' => 'ezmedia' ),
@@ -77,6 +78,7 @@ static function gather()
0,
strrpos( rtrim( $ini->variable( 'SolrBase', 'SearchServerURI' ), '/' ), '/' )
) . "/admin/cores";
+ /// @todo it would be nice to be able to use a specific timeout here, in case of firewalls that block the connection...
$data = eZHTTPTool::getDataByURL( $ezfindSatsUrl, false );
/// @todo add support for multi-core setups
if ( preg_match( '#([^<]+)#', $data, $matches ) )
diff --git a/classes/dbchecker.php b/classes/dbchecker.php
index 79c74d2..fd61586 100644
--- a/classes/dbchecker.php
+++ b/classes/dbchecker.php
@@ -1,7 +1,7 @@
ggsysinfo
- 0.9.12
- Copyright (C) 2008-2019 Gaetano Giunta
+ 0.9.13
+ Copyright (C) 2008-2020 Gaetano Giunta
GNU General Public License v2.0
diff --git a/ezinfo.php b/ezinfo.php
index bbca207..403b1e4 100644
--- a/ezinfo.php
+++ b/ezinfo.php
@@ -5,8 +5,8 @@ class ggsysinfoInfo
static function info()
{
return array( 'Name' => "ggsysinfo",
- 'Version' => "0.9.12",
- 'Copyright' => "Copyright (C) 2008-2019 Gaetano Giunta",
+ 'Version' => "0.9.13",
+ 'Copyright' => "Copyright (C) 2008-2020 Gaetano Giunta",
'License' => "GNU General Public License v2.0"
);
}
diff --git a/interfaces/ezsysinfoviewgroup.php b/interfaces/ezsysinfoviewgroup.php
index e584f3a..5cf4d35 100644
--- a/interfaces/ezsysinfoviewgroup.php
+++ b/interfaces/ezsysinfoviewgroup.php
@@ -1,7 +1,7 @@