DBXE/version.php

11 lines
184 B
PHP
Raw Permalink Normal View History

<?php
$version="OSS";
2024-02-25 11:19:42 +01:00
$version_revision="1.0.2";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
}
?>