1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-25 15:10:23 +01:00
OpenXE/version.php

11 lines
183 B
PHP
Raw Normal View History

<?php
$version="OSS";
2023-12-07 16:39:29 +01:00
$version_revision="1.11";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
}
?>