OpenXE/version.php
2023-04-18 19:14:59 +02:00

11 lines
184 B
PHP
Executable File

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