1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-05 22:49:48 +01:00
OpenXE/version.php
2023-07-04 11:18:13 +02:00

11 lines
183 B
PHP
Executable File

<?php
$version="OSS";
$version_revision="1.10";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
}
?>