summaryrefslogtreecommitdiff
path: root/cmd_line_reindex.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2025-08-27 17:22:06 +0100
committerlsces <lester@lsces.co.uk>2025-08-27 17:22:06 +0100
commitb334f17af5468923c93bad566f4e343378986569 (patch)
tree3d47f5a6e97aabf84f30714d136cde9244b04d04 /cmd_line_reindex.php
parent109e45dae91f26175779c15d99889486589ef1a3 (diff)
downloadsearch-b334f17af5468923c93bad566f4e343378986569.tar.gz
search-b334f17af5468923c93bad566f4e343378986569.tar.bz2
search-b334f17af5468923c93bad566f4e343378986569.zip
Code updated to PHP8.4 and namespace
Diffstat (limited to 'cmd_line_reindex.php')
-rw-r--r--cmd_line_reindex.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/cmd_line_reindex.php b/cmd_line_reindex.php
index 2ff439a..648879c 100644
--- a/cmd_line_reindex.php
+++ b/cmd_line_reindex.php
@@ -42,11 +42,11 @@ $_SERVER['HTTP_HOST'] = 'batch';
$_SERVER['HTTP_USER_AGENT'] = 'batch';
$_SERVER['SCRIPT_URL'] = 'batch';
$_SERVER['SERVER_SOFTWARE'] = 'batch';
-$HTTP_SERVER_VARS['HTTP_USER_AGENT'] = 'batch';
+$_SERVER['HTTP_USER_AGENT'] = 'batch';
-require_once( '../kernel/setup_inc.php' );
-require_once( LIBERTY_PKG_PATH.'LibertyBase.php');
-require_once( SEARCH_PKG_PATH.'refresh_functions.php');
+require_once '../kernel/includes/setup_inc.php';
+use Bitweaver\Liberty\LibertyBase;
+require_once SEARCH_PKG_INCLUDES_PATH.'refresh_functions.php';
$whatToIndex = "pages";
$unindexedOnly = false;
@@ -86,6 +86,5 @@ if (isset($argc)) { // we are running from the command line.
function microtime_float() {
list($usec, $sec) = explode(" ", microtime());
- return ((float)$usec + (float)$sec);
+ return (float) $usec + (float) $sec;
}
-?>