astroport/www/rompr/utils/versioninfo.php

9 lines
227 B
PHP
Raw Normal View History

2020-03-22 01:31:06 +01:00
<?php
chdir('..');
include ('includes/vars.php');
if (file_exists('updateinfo/'.ROMPR_VERSION.'/info.html')) {
readfile('updateinfo/'.ROMPR_VERSION.'/info.html');
} else {
header('HTTP/1.1 204 No Content');
}
?>