G1sms/www/rompr/utils/versioninfo.php

9 lines
227 B
PHP
Raw Permalink Normal View History

2019-11-27 23:43:32 +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');
}
?>