From 1721d78d2f055613c056e74012113309bf1578f4 Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Wed, 26 Aug 2015 20:39:44 -0700 Subject: [PATCH] Removed a line that spat out an error --- index.html | 0 make.php | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/make.php b/make.php index 5305f28..d105ad4 100644 --- a/make.php +++ b/make.php @@ -6,7 +6,7 @@ $scolour = $_POST['scolour']; $template = fopen("template/template.html", "r+"); // Change this if you have a custom template filename - $tempContents = fread($template, filesize("template/template.html")); //Read frin tge file + $tempContents = fread($template, filesize("template/template.html")); // Keywords for replacement - see README $keywords = array("rep_PCOLOUR", "rep_SCOLOUR", "rep_SNAME", "rep_URL", "rep_DEVNAME"); @@ -37,6 +37,6 @@ header('Content-Type: text/plain'); header('Content-Disposition: attachment; filename=index.html'); - readfile("index.html"); // Make the client download the file as a .html :) + // Make the client download the file as a .html :) ?> \ No newline at end of file