OpenXE/version.php
Xenomporio a78571aa45 1.3.1
2022-09-07 17:16:04 +02:00

11 lines
184 B
PHP
Executable File

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