13 lines
298 B
PHP
13 lines
298 B
PHP
<?php
|
|
$mainversion = 1;
|
|
$subversion = 0;
|
|
$patchversion = 1;
|
|
|
|
$patchFile = __DIR__ . '/versionsnummer.txt';
|
|
if (is_file($patchFile)) {
|
|
$rawPatch = trim((string)file_get_contents($patchFile));
|
|
if ($rawPatch !== '' && ctype_digit($rawPatch)) {
|
|
$patchversion = (int)$rawPatch;
|
|
}
|
|
}
|