OpenXE/version.php

11 lines
183 B
PHP
Raw Normal View History

<?php
$version="OSS";
2023-07-04 11:18:13 +02:00
$version_revision="1.10";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
}
?>