astrXbian/www/jukebox/utils/versioninfo.php

9 lines
227 B
PHP
Raw Normal View History

2020-12-12 03:06:33 +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');
}
?>