Fix broken refresh command option

This commit is contained in:
Craig Davis 2013-03-19 07:53:50 -05:00
parent a98b3602f5
commit de7d544e11

View File

@ -94,15 +94,12 @@ $rendered = $m->render(
'title' => $title, 'title' => $title,
'style' => $style, 'style' => $style,
'resume' => $resume, 'resume' => $resume,
'reload' => $refresh_dev 'reload' => $config->refresh
) )
); );
// Save the fully rendered html to the final destination // Save the fully rendered html to the final destination
file_put_contents( file_put_contents($output, $rendered);
$output,
$rendered
);
echo "Wrote html to $output\n"; echo "Wrote html to $output\n";
// If the user wants to make a pdf file, we'll use wkhtmltopdf to convert // If the user wants to make a pdf file, we'll use wkhtmltopdf to convert