changeset 3123:c7de85e03321

As 5pm approaches,the error count increases (YAUC)
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Wed, 18 Jul 2018 16:53:38 +0100
parents 3e97bf9d24cf
children 8bef85957a2f
files php/comment_parser.php php/get_filtered_count.php php/get_tests.php php/pool.php php/pseudo.php php/requestKey.php php/save.php php/score_parser.php php/test_write.php
diffstat 9 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/php/comment_parser.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/comment_parser.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 // Comment Parser for PHP
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
--- a/php/get_filtered_count.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/get_filtered_count.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
--- a/php/get_tests.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/get_tests.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
--- a/php/pool.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/pool.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
--- a/php/pseudo.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/pseudo.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 header('Access-Control-Allow-Origin: *');
 header("Content-type: text/xml");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
--- a/php/requestKey.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/requestKey.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 function generateRandomString($length = 32) {
     // from http://stackoverflow.com/questions/4356289/php-random-string-generator
     $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
--- a/php/save.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/save.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 function findNodeByAttribute($nodeList, $attributeName, $attributeValue) {
     if (empty($attributeName) || empty($attributeValue)) {
         die("Error: Empty findNodeByAttribute");
--- a/php/score_parser.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/score_parser.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
--- a/php/test_write.php	Wed Jul 18 16:52:21 2018 +0100
+++ b/php/test_write.php	Wed Jul 18 16:53:38 2018 +0100
@@ -1,5 +1,5 @@
 <?php
-incluce_once("config.php");
+include_once("config.php");
 $saveLocation = getSaveLocation();
 $file = $saveLocation."test-save.xml";
 $state = file_put_contents($file, "<xml></xml>");