diff save.php @ 1939:7c846e19725f

Merge
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 08 Mar 2016 14:44:14 +0000
parents 94e57a566167
children 83b439322229
line wrap: on
line diff
--- a/save.php	Wed Feb 24 14:00:10 2016 +0000
+++ b/save.php	Tue Mar 08 14:44:14 2016 +0000
@@ -1,4 +1,11 @@
 <?php
+	error_reporting(0);
+    try{
+        date_default_timezone_get();
+    }
+    catch(Exception $e){
+        date_default_timezone_set('UTC'); // Sets to UTC if not specified anywhere in .ini
+    }
 	header('Access-Control-Allow-Origin: *');
 	header("Content-type: text/xml");
 	$postText = file_get_contents('php://input');
@@ -14,7 +21,7 @@
 		return;
 	}
 	$wbytes = fwrite($fileHandle, $postText);
-	if ($wbytes == FALSE)
+	if ($wbytes === FALSE)
 	{
 		// FileWrite failed
 		$xml = '<response state="error"><message>Could not write file "saves/'.$xmlfile.'"</message></response>';
@@ -26,4 +33,4 @@
 	// Return JSON confirmation data
 	$xml = '<response state="OK"><message>OK</message><file bytes="'.$wbytes.'">"saves/'.$xmlfile.'"</file></response>';
 	echo $xml;
-?>
\ No newline at end of file
+?>