KLanding/updatenotify.php
2016-03-23 11:57:34 +00:00

30 lines
644 B
PHP

<div id="boxes">
<div id="dialog" class="window">
New Update Available!
<?php
if(isset($_POST['submit']))
{
echo exec('Update.bat');
// DEBUG
//echo exec('Update.bat', $output);
//print_r($output);
echo '<script>parent.window.location.reload(true);</script>';
} else {
// display the form
?>
<form action="" method="post">
<input type="submit" name="submit" value="GET IT!">
</form>
<?php
}
?>
Change Log - <br />
-Added Links to Status Widget <br />
-Added Links to Force CouchPotato processing in Config <br />
<div id="popupfoot"> <a href="#" class="close agree" >Not Now...</a></div>
</div>
<div id="mask"></div>
</div>