diff options
author | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-07-27 22:40:22 +0100 |
---|---|---|
committer | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-07-27 22:40:22 +0100 |
commit | 5af0df843f05f6f1650ccb63498741431bb9d58a (patch) | |
tree | 75487bb61aa8e6787b59a94415d3d41aba785478 /web/finished.php | |
parent | Fix broken shell filter (diff) | |
download | gentoaster-5af0df843f05f6f1650ccb63498741431bb9d58a.tar.gz gentoaster-5af0df843f05f6f1650ccb63498741431bb9d58a.tar.bz2 gentoaster-5af0df843f05f6f1650ccb63498741431bb9d58a.zip |
Making everything Zend compliant again
Diffstat (limited to 'web/finished.php')
-rw-r--r-- | web/finished.php | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/web/finished.php b/web/finished.php index fa953c7..5d2309b 100644 --- a/web/finished.php +++ b/web/finished.php @@ -1,3 +1,9 @@ +<?php + +$buildID = filter_input(INPUT_GET, "uuid", FILTER_UNSAFE_RAW); +$buildID = urlencode($buildID); + +?> <html> <head> <title>Gentoaster</title> @@ -11,11 +17,12 @@ <div id="finished" class="step"> <h1>That's it!</h1> <p> - That's all there is to it! We've sent your configuration down to the kitchen to be - toasted, come back later to get your image. + That's all there is to it! We've sent your configuration down to + the kitchen to be toasted, come back later to get your image. </p> <p> - You can also click <a href="status.php?uuid=<?php echo htmlspecialchars($_GET["uuid"]); ?>">here</a> to + You can also click + <a href="status.php?uuid=<?php echo $buildID; ?>">here</a> to view the status of your build. </p> </div> |