From cfa5854f4b454e138d5a03624c49005f2038c6ab Mon Sep 17 00:00:00 2001 From: Alec M Date: Sat, 11 Sep 2021 10:31:14 -0400 Subject: [PATCH] Disable recall fetch by default --- index.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/index.php b/index.php index 94e3052..ac0a174 100644 --- a/index.php +++ b/index.php @@ -17,13 +17,13 @@ echo ""; // Fetch recalls -echo "

Perform raw recall request

", "
";
-$recalls = amattu\NHTSA::getRecalls(2015, "Ford", "Mustang");
-print_r($recalls);
-echo "
"; +//echo "

Perform raw recall request

", "
";
+//$recalls = amattu\NHTSA::getRecalls(2015, "Ford", "Mustang");
+//print_r($recalls);
+//echo "
"; // Pretty parse recalls -echo "

Pretty parse raw recall request

", "
";
-print_r(amattu\NHTSA::parseRecalls($recalls));
-echo "
"; +//echo "

Pretty parse raw recall request

", "
";
+//print_r(amattu\NHTSA::parseRecalls($recalls));
+//echo "
"; ?>