Failed Conditions
Pull Request — master (#221)
by
unknown
04:55 queued 02:15
created
core/js/nests.maps.js.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@
 block discarded – undo
15 15
 	$lang = $config->system->forced_lang;
16 16
 	$config->system->forced_lang = $lang;
17 17
 
18
-    # Send Javascript header
19
-    header('Content-type: text/javascript');
20
-    # Load Config
21
-    include_once('../../config.php');
22
-    include_once('../process/locales.loader.php');
23
-    # Load nests-file
18
+	# Send Javascript header
19
+	header('Content-type: text/javascript');
20
+	# Load Config
21
+	include_once('../../config.php');
22
+	include_once('../process/locales.loader.php');
23
+	# Load nests-file
24 24
 	$nest_file	= file_get_contents('../json/nests.stats.json');
25 25
 	$nests = json_decode($nest_file, true);
26 26
     
27
-    ?>
27
+	?>
28 28
 
29 29
 function initMap() {
30 30
     $.getJSON( "core/json/variables.json", function( variables ) {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
 
6 6
 <?php
7 7
 
8
-	$filePath	= dirname(__FILE__);
9
-	$config_file	= $filePath.'/../../config.php';
8
+	$filePath = dirname(__FILE__);
9
+	$config_file = $filePath.'/../../config.php';
10 10
 	include_once($config_file);
11 11
 	$variables      = $filePath.'/../json/variables.json';
12 12
 	$config         = json_decode(file_get_contents($variables));
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     include_once('../../config.php');
22 22
     include_once('../process/locales.loader.php');
23 23
     # Load nests-file
24
-	$nest_file	= file_get_contents('../json/nests.stats.json');
24
+	$nest_file = file_get_contents('../json/nests.stats.json');
25 25
 	$nests = json_decode($nest_file, true);
26 26
     
27 27
     ?>
Please login to merge, or discard this patch.