astrXbian/www/jukebox/utils/versioninfo.php
2020-12-12 03:06:33 +01:00

9 lines
227 B
PHP

<?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');
}
?>