OpenXE/version.php
2022-11-21 09:33:11 +00:00

11 lines
182 B
PHP
Executable File

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