diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-24 21:02:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-24 21:02:16 +0000 |
commit | 13d322858b3c42629f51681f063bee700ca3b25b (patch) | |
tree | 4a0524e82efaf2f3b02aceb9542198357c8bef8e /mod | |
parent | 1254960ec68eacbec7a7155a9c4addd5685d8586 (diff) | |
download | elgg-13d322858b3c42629f51681f063bee700ca3b25b.tar.gz elgg-13d322858b3c42629f51681f063bee700ca3b25b.tar.bz2 |
Closes 374: Using get_version function instead of including the version file.
git-svn-id: https://code.elgg.org/elgg/trunk@2123 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/diagnostics/start.php | 4 | ||||
-rw-r--r-- | mod/updateclient/start.php | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mod/diagnostics/start.php b/mod/diagnostics/start.php index 38cb6b167..e2592e263 100644 --- a/mod/diagnostics/start.php +++ b/mod/diagnostics/start.php @@ -61,7 +61,9 @@ { global $CONFIG; - include_once($CONFIG->path . "version.php"); + // Get version information + $version = get_version(); + $release = get_version(true); $returnvalue .= sprintf(elgg_echo('diagnostics:report:basic'), $release, $version); diff --git a/mod/updateclient/start.php b/mod/updateclient/start.php index a99532303..2cf8026c3 100644 --- a/mod/updateclient/start.php +++ b/mod/updateclient/start.php @@ -95,7 +95,9 @@ { $result = $result->result; - include_once($CONFIG->url . "version.php"); + // Get version information + $version = get_version(); + $release = get_version(true); if ( ($version != $result['version']) || |