From c6a1a489109dcfe0b34719306d0c7637a90f7e07 Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Tue, 28 Jun 2016 00:23:06 -0400 Subject: [PATCH] made example save-as filename more generic --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c639d1..52c8cc6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ In your PHP file: ```php Header('Content-type: image/svg+xml; charset=utf-8'); -Header('Content-Disposition: inline; filename="Dash-24h-chart-' . date('Y-m-d\THisT') . '.svg"'); +Header('Content-Disposition: inline; filename="chart-' . date('Y-m-d\THisT') . '.svg"'); include 'buffer.php'; include 'SVGChartBuilder.php';