mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
11 lines
186 B
PHP
Executable File
11 lines
186 B
PHP
Executable File
<?php
|
|
|
|
$version="OSS";
|
|
$version_revision="D.1.8.1";
|
|
$githash = file_get_contents("../githash.txt");
|
|
if (!empty($githash)) {
|
|
$version_revision .= " (".substr($githash,0,8).")";
|
|
}
|
|
|
|
?>
|