OpenXE/version.php

11 lines
182 B
PHP
Raw Normal View History

<?php
$version="OSS";
2022-11-21 10:33:11 +01:00
$version_revision="1.6";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
}
?>