From 7f697652958f30e184d3d7ad4eec4a5fde19aab8 Mon Sep 17 00:00:00 2001 From: dkorol Date: Tue, 5 Apr 2016 16:49:56 +0300 Subject: [PATCH] parsing opencart version from index.php define procedure --- system/cron/dispatch.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/system/cron/dispatch.php b/system/cron/dispatch.php index 8f29648..47e3144 100644 --- a/system/cron/dispatch.php +++ b/system/cron/dispatch.php @@ -3,13 +3,18 @@ // Ensure $cli_action is set if (!isset($cli_action)) { echo 'ERROR: $cli_action must be set in calling script.'; - $log->write('ERROR: $cli_action must be set in calling script.'); http_response_code(400); exit; } // Version -define('VERSION', '1.5.6'); +$version = '1.5.6'; +$indexFile = file_get_contents(realpath(dirname(__FILE__)) . '/../../index.php'); +preg_match("/define\([\s]*['\"]VERSION['\"][\s]*,[\s]*['\"](.*)['\"][\s]*\)[\s]*;/mi", $indexFile, $versionMatches); +if(isset($versionMatches[1])) { + $version = $versionMatches[1]; +} +define('VERSION', $version); // Configuration (note we're using the admin config) require_once(realpath(dirname(__FILE__)) . '/../../admin/config.php');