Completed
Push — master ( 486240...8fac34 )
by Yannick
08:18
created
install/index.php 2 patches
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	}
86 86
 	print '</ul>You <strong>must</strong> add these modules.</div>';
87 87
 	require('../footer.php');
88
-        exit;
88
+		exit;
89 89
 }
90 90
 
91 91
 if (!isset($_SESSION['install']) && !isset($_POST['dbtype']) && (count($error) == 0)) {
@@ -291,14 +291,14 @@  discard block
 block discarded – undo
291 291
 					<th>Source name</th>
292 292
 				</tr>
293 293
 		<?php
294
-		    require_once(dirname(__FILE__).'/../require/class.Connection.php');
295
-		    $Connection = new Connection();
296
-		    if ($Connection->db != NULL) {
294
+			require_once(dirname(__FILE__).'/../require/class.Connection.php');
295
+			$Connection = new Connection();
296
+			if ($Connection->db != NULL) {
297 297
 			if ($Connection->tableExists('source_location')) {
298
-			    require_once(dirname(__FILE__).'/../require/class.Source.php');
299
-			    $Source = new Source();
300
-			    $alllocations = $Source->getAllLocationInfo();
301
-			    foreach ($alllocations as $location) {
298
+				require_once(dirname(__FILE__).'/../require/class.Source.php');
299
+				$Source = new Source();
300
+				$alllocations = $Source->getAllLocationInfo();
301
+				foreach ($alllocations as $location) {
302 302
 		?>
303 303
 				<tr>
304 304
 	    				<input type="hidden" name="source_id[]" value="<?php print $location['id']; ?>" />
@@ -312,9 +312,9 @@  discard block
 block discarded – undo
312 312
 				</tr>
313 313
 		
314 314
 		<?php
315
-			    }
315
+				}
316
+			}
316 317
 			}
317
-		    }
318 318
 		?>
319 319
 
320 320
 				<tr>
@@ -499,12 +499,12 @@  discard block
 block discarded – undo
499 499
 ?>
500 500
 							<tr>
501 501
 								<?php
502
-								    if (filter_var($source['host'],FILTER_VALIDATE_URL)) {
502
+									if (filter_var($source['host'],FILTER_VALIDATE_URL)) {
503 503
 								?>
504 504
 								<td><input type="text" name="host[]" id="host" value="<?php print $source['host']; ?>" /></td>
505 505
 								<td><input type="number" name="port[]" id="port" value="<?php print $source['port']; ?>" /></td>
506 506
 								<?php
507
-								    } else {
507
+									} else {
508 508
 									$hostport = explode(':',$source['host']);
509 509
 									if (isset($hostport[1])) {
510 510
 										$host = $hostport[0];
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
 								<td><input type="text" name="host[]" id="host" value="<?php print $host; ?>" /></td>
518 518
 								<td><input type="number" name="port[]" id="port" value="<?php print $port; ?>" /></td>
519 519
 								<?php
520
-								    }
520
+									}
521 521
 								?>
522 522
 								<td>
523 523
 									<select name="format[]" id="format">
@@ -792,7 +792,7 @@  discard block
 block discarded – undo
792 792
 			<br />
793 793
 			<p>
794 794
 			<?php 
795
-			    if (extension_loaded('gd') && function_exists('gd_info')) {
795
+				if (extension_loaded('gd') && function_exists('gd_info')) {
796 796
 			?>
797 797
 				<label for="aircrafticoncolor">Color of aircraft icon on map</label>
798 798
 				<input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) echo $globalAircraftIconColor; else echo '1a3151'; ?>" />
@@ -802,11 +802,11 @@  discard block
 block discarded – undo
802 802
 				<b>The directory cache is not writable, aircraft icon will not be cached</b>
803 803
 			<?php
804 804
 				}
805
-			    } else {
805
+				} else {
806 806
 			?>
807 807
 				<b>PHP GD is not installed, you can t change color of aircraft icon on map</b>
808 808
 			<?php
809
-			    }
809
+				}
810 810
 			?>
811 811
 			</p>
812 812
 			<br />
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 	</p>
826 826
 <?php
827 827
 	require('../footer.php');
828
-        exit;
828
+		exit;
829 829
 }
830 830
 	
831 831
 $settings = array();
@@ -915,8 +915,8 @@  discard block
 block discarded – undo
915 915
 	
916 916
 	$sources = array();
917 917
 	foreach ($source_name as $keys => $name) {
918
-	    if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]);
919
-	    else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]);
918
+		if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]);
919
+		else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]);
920 920
 	}
921 921
 	if (count($sources) > 0) $_SESSION['sources'] = $sources;
922 922
 
@@ -1168,14 +1168,14 @@  discard block
 block discarded – undo
1168 1168
 
1169 1169
 	// Set some defaults values...
1170 1170
 	if (!isset($globalAircraftImageSources)) {
1171
-	    $globalAircraftImageSources = array('ivaomtl','wikimedia','airportdata','deviantart','flickr','bing','jetphotos','planepictures','planespotters');
1172
-	    $settings = array_merge($settings,array('globalAircraftImageSources' => $globalAircraftImageSources));
1171
+		$globalAircraftImageSources = array('ivaomtl','wikimedia','airportdata','deviantart','flickr','bing','jetphotos','planepictures','planespotters');
1172
+		$settings = array_merge($settings,array('globalAircraftImageSources' => $globalAircraftImageSources));
1173 1173
 	}
1174 1174
 
1175 1175
 	if (!isset($globalSchedulesSources)) {
1176
-	    $globalSchedulesSources = array('flightmapper','costtotravel','flightradar24','flightaware');
1177
-    	    $settings = array_merge($settings,array('globalSchedulesSources' => $globalSchedulesSources));
1178
-    	}
1176
+		$globalSchedulesSources = array('flightmapper','costtotravel','flightradar24','flightaware');
1177
+			$settings = array_merge($settings,array('globalSchedulesSources' => $globalSchedulesSources));
1178
+		}
1179 1179
 
1180 1180
 	$settings = array_merge($settings,array('globalInstalled' => 'TRUE'));
1181 1181
 
@@ -1215,13 +1215,13 @@  discard block
 block discarded – undo
1215 1215
 	print '<ul><div id="step">';
1216 1216
 	$pop = false;
1217 1217
 	foreach ($_SESSION['done'] as $done) {
1218
-	    print '<li>'.$done.'....<strong>SUCCESS</strong></li>';
1219
-	    if ($done == 'Create database') $pop = true;
1220
-	    if ($_SESSION['install'] == 'database_create') $pop = true;
1218
+		print '<li>'.$done.'....<strong>SUCCESS</strong></li>';
1219
+		if ($done == 'Create database') $pop = true;
1220
+		if ($_SESSION['install'] == 'database_create') $pop = true;
1221 1221
 	}
1222 1222
 	if ($pop) {
1223
-	    sleep(5);
1224
-	    print '<li>Create and import tables....<img src="../images/loading.gif" /></li>';
1223
+		sleep(5);
1224
+		print '<li>Create and import tables....<img src="../images/loading.gif" /></li>';
1225 1225
 	} else print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>';
1226 1226
 	print '</div></ul>';
1227 1227
 	print '<div id="error"></div>';
@@ -1284,7 +1284,7 @@  discard block
 block discarded – undo
1284 1284
 	unset($_COOKIE['install']);
1285 1285
 	print '<div class="info column"><ul>';
1286 1286
 	foreach ($_SESSION['done'] as $done) {
1287
-	    print '<li>'.$done.'....<strong>SUCCESS</strong></li>';
1287
+		print '<li>'.$done.'....<strong>SUCCESS</strong></li>';
1288 1288
 	}
1289 1289
 	print '<li>Reloading page to check all is now ok....<strong>SUCCESS</strong></li>';
1290 1290
 	print '</ul></div>';
Please login to merge, or discard this patch.
Braces   +375 added lines, -96 removed lines patch added patch discarded remove patch
@@ -117,44 +117,71 @@  discard block
 block discarded – undo
117 117
 			</div>
118 118
 			<p>
119 119
 				<label for="dbhost">Database hostname</label>
120
-				<input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) print $globalDBhost; ?>" />
120
+				<input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) {
121
+	print $globalDBhost;
122
+}
123
+?>" />
121 124
 			</p>
122 125
 			<p>
123 126
 				<label for="dbport">Database port</label>
124
-				<input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) print $globalDBport; ?>" />
127
+				<input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) {
128
+	print $globalDBport;
129
+}
130
+?>" />
125 131
 			</p>
126 132
 			<p>
127 133
 				<label for="dbname">Database name</label>
128
-				<input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) print $globalDBname; ?>" />
134
+				<input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) {
135
+	print $globalDBname;
136
+}
137
+?>" />
129 138
 			</p>
130 139
 			<p>
131 140
 				<label for="dbuser">Database user</label>
132
-				<input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) print $globalDBuser; ?>" />
141
+				<input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) {
142
+	print $globalDBuser;
143
+}
144
+?>" />
133 145
 			</p>
134 146
 			<p>
135 147
 				<label for="dbuserpass">Database user password</label>
136
-				<input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) print $globalDBpass; ?>" />
148
+				<input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) {
149
+	print $globalDBpass;
150
+}
151
+?>" />
137 152
 			</p>
138 153
 		</fieldset>
139 154
 		<fieldset>
140 155
 			<legend>Site configuration</legend>
141 156
 			<p>
142 157
 				<label for="sitename">Site name</label>
143
-				<input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) print $globalName; ?>" />
158
+				<input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) {
159
+	print $globalName;
160
+}
161
+?>" />
144 162
 			</p>
145 163
 			<p>
146 164
 				<label for="siteurl">Site directory</label>
147
-				<input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) print $globalURL; ?>" />
165
+				<input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) {
166
+	print $globalURL;
167
+}
168
+?>" />
148 169
 				<p class="help-block">Can be null. ex : <i>flightairmap</i> if complete URL is <i>http://toto.com/flightairmap</i></p>
149 170
 			</p>
150 171
 			<p>
151 172
 				<label for="timezone">Timezone</label>
152
-				<input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) print $globalTimezone; ?>" />
173
+				<input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) {
174
+	print $globalTimezone;
175
+}
176
+?>" />
153 177
 				<p class="help-block">ex : UTC, Europe/Paris,...</p>
154 178
 			</p>
155 179
 			<p>
156 180
 				<label for="language">Language</label>
157
-				<input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) print $globalLanguage; ?>" />
181
+				<input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) {
182
+	print $globalLanguage;
183
+}
184
+?>" />
158 185
 				<p class="help-block">Used only when link to wikipedia for now. Can be EN,DE,FR,...</p>
159 186
 			</p>
160 187
 		</fieldset>
@@ -175,18 +202,27 @@  discard block
 block discarded – undo
175 202
 			<div id="mapbox_data">
176 203
 				<p>
177 204
 					<label for="mapboxid">Mapbox id</label>
178
-					<input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) print $globalMapboxId; ?>" />
205
+					<input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) {
206
+	print $globalMapboxId;
207
+}
208
+?>" />
179 209
 				</p>
180 210
 				<p>
181 211
 					<label for="mapboxtoken">Mapbox token</label>
182
-					<input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) print $globalMapboxToken; ?>" />
212
+					<input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) {
213
+	print $globalMapboxToken;
214
+}
215
+?>" />
183 216
 				</p>
184 217
 			</div>
185 218
 			<br />
186 219
 			<div id="google_data">
187 220
 				<p>
188 221
 					<label for="googlekey">Google API key</label>
189
-					<input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) print $globalGoogleAPIKey; ?>" />
222
+					<input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) {
223
+	print $globalGoogleAPIKey;
224
+}
225
+?>" />
190 226
 					<p class="help-block">Get a key <a href="https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key">here</a></p>
191 227
 				</p>
192 228
 			</div>
@@ -194,7 +230,10 @@  discard block
 block discarded – undo
194 230
 			<div id="bing_data">
195 231
 				<p>
196 232
 					<label for="bingkey">Bing Map key</label>
197
-					<input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) print $globalBingMapKey; ?>" />
233
+					<input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) {
234
+	print $globalBingMapKey;
235
+}
236
+?>" />
198 237
 					<p class="help-block">Get a key <a href="https://msdn.microsoft.com/en-us/library/ff428642.aspx">here</a></p>
199 238
 				</p>
200 239
 			</div>
@@ -202,7 +241,10 @@  discard block
 block discarded – undo
202 241
 			<div id="mapquest_data">
203 242
 				<p>
204 243
 					<label for="mapquestkey">MapQuest key</label>
205
-					<input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) print $globalMapQuestKey; ?>" />
244
+					<input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) {
245
+	print $globalMapQuestKey;
246
+}
247
+?>" />
206 248
 					<p class="help-block">Get a key <a href="https://developer.mapquest.com/user/me/apps">here</a></p>
207 249
 				</p>
208 250
 			</div>
@@ -210,11 +252,17 @@  discard block
 block discarded – undo
210 252
 			<div id="here_data">
211 253
 				<p>
212 254
 					<label for="hereappid">Here App_Id</label>
213
-					<input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) print $globalHereappId; ?>" />
255
+					<input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) {
256
+	print $globalHereappId;
257
+}
258
+?>" />
214 259
 				</p>
215 260
 				<p>
216 261
 					<label for="hereappcode">Here App_Code</label>
217
-					<input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) print $globalHereappCode; ?>" />
262
+					<input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) {
263
+	print $globalHereappCode;
264
+}
265
+?>" />
218 266
 				</p>
219 267
 				<p class="help-block">Get a key <a href="https://developer.here.com/rest-apis/documentation/enterprise-map-tile/topics/quick-start.html">here</a></p>
220 268
 			</div>
@@ -223,42 +271,86 @@  discard block
 block discarded – undo
223 271
 			<legend>Coverage area</legend>
224 272
 			<p>
225 273
 				<label for="latitudemax">The maximum latitude (north)</label>
226
-				<input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) print $globalLatitudeMax; ?>" />
274
+				<input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) {
275
+	print $globalLatitudeMax;
276
+}
277
+?>" />
227 278
 			</p>
228 279
 			<p>
229 280
 				<label for="latitudemin">The minimum latitude (south)</label>
230
-				<input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) print $globalLatitudeMin; ?>" />
281
+				<input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) {
282
+	print $globalLatitudeMin;
283
+}
284
+?>" />
231 285
 			</p>
232 286
 			<p>
233 287
 				<label for="longitudemax">The maximum longitude (west)</label>
234
-				<input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) print $globalLongitudeMax; ?>" />
288
+				<input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) {
289
+	print $globalLongitudeMax;
290
+}
291
+?>" />
235 292
 			</p>
236 293
 			<p>
237 294
 				<label for="longitudemin">The minimum longitude (east)</label>
238
-				<input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) print $globalLongitudeMin; ?>" />
295
+				<input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) {
296
+	print $globalLongitudeMin;
297
+}
298
+?>" />
239 299
 			</p>
240 300
 			<p>
241 301
 				<label for="latitudecenter">The latitude center</label>
242
-				<input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) print $globalCenterLatitude; ?>" />
302
+				<input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) {
303
+	print $globalCenterLatitude;
304
+}
305
+?>" />
243 306
 			</p>
244 307
 			<p>
245 308
 				<label for="longitudecenter">The longitude center</label>
246
-				<input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) print $globalCenterLongitude; ?>" />
309
+				<input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) {
310
+	print $globalCenterLongitude;
311
+}
312
+?>" />
247 313
 			</p>
248 314
 			<p>
249 315
 				<label for="livezoom">Default Zoom on live map</label>
250
-				<input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>" />
316
+				<input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) {
317
+	print $globalLiveZoom;
318
+} else {
319
+	print '9';
320
+}
321
+?>" />
251 322
 			</p>
252 323
 			<p>
253 324
 				<label for="squawk_country">Country for squawk usage</label>
254 325
 				<select name="squawk_country" id="squawk_country">
255
-					<option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') print ' selected '; ?>>UK</option>
256
-					<option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') print ' selected '; ?>>NZ</option>
257
-					<option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') print ' selected '; ?>>US</option>
258
-					<option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') print ' selected '; ?>>AU</option>
259
-					<option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') print ' selected '; ?>>NL</option>
260
-					<option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') print ' selected '; ?>>FR</option>
261
-					<option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') print ' selected '; ?>>TR</option>
326
+					<option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') {
327
+	print ' selected ';
328
+}
329
+?>>UK</option>
330
+					<option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') {
331
+	print ' selected ';
332
+}
333
+?>>NZ</option>
334
+					<option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') {
335
+	print ' selected ';
336
+}
337
+?>>US</option>
338
+					<option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') {
339
+	print ' selected ';
340
+}
341
+?>>AU</option>
342
+					<option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') {
343
+	print ' selected ';
344
+}
345
+?>>NL</option>
346
+					<option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') {
347
+	print ' selected ';
348
+}
349
+?>>FR</option>
350
+					<option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') {
351
+	print ' selected ';
352
+}
353
+?>>TR</option>
262 354
 				</select>
263 355
 			</p>
264 356
 		</fieldset>
@@ -267,15 +359,24 @@  discard block
 block discarded – undo
267 359
 			<p><i>Only put in DB flights that are inside a circle</i></p>
268 360
 			<p>
269 361
 				<label for="latitude">Center latitude</label>
270
-				<input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) echo $globalDistanceIgnore['latitude']; ?>" />
362
+				<input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) {
363
+	echo $globalDistanceIgnore['latitude'];
364
+}
365
+?>" />
271 366
 			</p>
272 367
 			<p>
273 368
 				<label for="longitude">Center longitude</label>
274
-				<input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) echo $globalDistanceIgnore['longitude']; ?>" />
369
+				<input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) {
370
+	echo $globalDistanceIgnore['longitude'];
371
+}
372
+?>" />
275 373
 			</p>
276 374
 			<p>
277 375
 				<label for="Distance">Distance (in km)</label>
278
-				<input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) echo $globalDistanceIgnore['distance']; ?>" />
376
+				<input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) {
377
+	echo $globalDistanceIgnore['distance'];
378
+}
379
+?>" />
279 380
 			</p>
280 381
 		</fieldset>
281 382
 		<fieldset>
@@ -364,11 +465,17 @@  discard block
 block discarded – undo
364 465
 			<div id="flightaware_data">
365 466
 				<p>
366 467
 					<label for="flightawareusername">FlightAware username</label>
367
-					<input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) print $globalFlightAwareUsername; ?>" />
468
+					<input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) {
469
+	print $globalFlightAwareUsername;
470
+}
471
+?>" />
368 472
 				</p>
369 473
 				<p>
370 474
 					<label for="flightawarepassword">FlightAware password/API key</label>
371
-					<input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) print $globalFlightAwarePassword; ?>" />
475
+					<input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) {
476
+	print $globalFlightAwarePassword;
477
+}
478
+?>" />
372 479
 				</p>
373 480
 			</div>
374 481
 -->
@@ -521,20 +628,56 @@  discard block
 block discarded – undo
521 628
 								?>
522 629
 								<td>
523 630
 									<select name="format[]" id="format">
524
-										<option value="auto" <?php if (!isset($source['format'])) print 'selected'; ?>>Auto</option>
525
-										<option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') print 'selected'; ?>>SBS</option>
526
-										<option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') print 'selected'; ?>>TSV</option>
527
-										<option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') print 'selected'; ?>>Raw</option>
528
-										<option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') print 'selected'; ?>>APRS</option>
529
-										<option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') print 'selected'; ?>>Radarcape deltadb.txt</option>
530
-										<option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') print 'selected'; ?>>Vatsim</option>
531
-										<option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') print 'selected'; ?>>Virtual Radar Server</option>
532
-										<option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') print 'selected'; ?>>phpVMS</option>
533
-										<option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') print 'selected'; ?>>IVAO</option>
631
+										<option value="auto" <?php if (!isset($source['format'])) {
632
+	print 'selected';
633
+}
634
+?>>Auto</option>
635
+										<option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') {
636
+	print 'selected';
637
+}
638
+?>>SBS</option>
639
+										<option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') {
640
+	print 'selected';
641
+}
642
+?>>TSV</option>
643
+										<option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') {
644
+	print 'selected';
645
+}
646
+?>>Raw</option>
647
+										<option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') {
648
+	print 'selected';
649
+}
650
+?>>APRS</option>
651
+										<option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') {
652
+	print 'selected';
653
+}
654
+?>>Radarcape deltadb.txt</option>
655
+										<option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') {
656
+	print 'selected';
657
+}
658
+?>>Vatsim</option>
659
+										<option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') {
660
+	print 'selected';
661
+}
662
+?>>Virtual Radar Server</option>
663
+										<option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') {
664
+	print 'selected';
665
+}
666
+?>>phpVMS</option>
667
+										<option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') {
668
+	print 'selected';
669
+}
670
+?>>IVAO</option>
534 671
 									</select>
535 672
 								</td>
536
-								<td><input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) print $source['name']; ?>" /></td>
537
-								<td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) print 'checked'; ?> /></td>
673
+								<td><input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) {
674
+	print $source['name'];
675
+}
676
+?>" /></td>
677
+								<td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) {
678
+	print 'checked';
679
+}
680
+?> /></td>
538 681
 								<td><input type="button" id="delhost" value="Delete" onclick="deleteRow(this)" /> <input type="button" id="addhost" value="Add" onclick="insRow()" /></td>
539 682
 							</tr>
540 683
 <?php
@@ -573,11 +716,17 @@  discard block
 block discarded – undo
573 716
 					<p>Listen UDP server for acarsdec/acarsdeco2/...</p>
574 717
 					<p>
575 718
 						<label for="acarshost">ACARS UDP host</label>
576
-						<input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) print $globalACARSHost; ?>" />
719
+						<input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) {
720
+	print $globalACARSHost;
721
+}
722
+?>" />
577 723
 					</p>
578 724
 					<p>
579 725
 						<label for="acarsport">ACARS UDP port</label>
580
-						<input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) print $globalACARSPort; ?>" />
726
+						<input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) {
727
+	print $globalACARSPort;
728
+}
729
+?>" />
581 730
 					</p>
582 731
 				</fieldset>
583 732
 			</div>
@@ -631,12 +780,18 @@  discard block
 block discarded – undo
631 780
 			<div id="schedules_options">
632 781
 				<p>
633 782
 					<label for="britishairways">British Airways API Key</label>
634
-					<input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) print $globalBritishAirwaysKey; ?>" />
783
+					<input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) {
784
+	print $globalBritishAirwaysKey;
785
+}
786
+?>" />
635 787
 					<p class="help-block">Register an account on <a href="https://developer.ba.com/">https://developer.ba.com/</a></p>
636 788
 				</p>
637 789
 				<p>
638 790
 					<label for="transavia">Transavia Test API Consumer Key</label>
639
-					<input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) print $globalTransaviaKey; ?>" />
791
+					<input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) {
792
+	print $globalTransaviaKey;
793
+}
794
+?>" />
640 795
 					<p class="help-block">Register an account on <a href="https://developer.transavia.com">https://developer.transavia.com</a></p>
641 796
 				</p>
642 797
 				<p>
@@ -644,10 +799,16 @@  discard block
 block discarded – undo
644 799
 						<b>Lufthansa API Key</b>
645 800
 						<p>
646 801
 							<label for="lufthansakey">Key</label>
647
-							<input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) print $globalLufthansaKey['key']; ?>" />
802
+							<input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) {
803
+	print $globalLufthansaKey['key'];
804
+}
805
+?>" />
648 806
 						</p><p>
649 807
 							<label for="lufthansasecret">Secret</label>
650
-							<input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) print $globalLufthansaKey['secret']; ?>" />
808
+							<input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) {
809
+	print $globalLufthansaKey['secret'];
810
+}
811
+?>" />
651 812
 						</p>
652 813
 					</div>
653 814
 					<p class="help-block">Register an account on <a href="https://developer.lufthansa.com/page">https://developer.lufthansa.com/page</a></p>
@@ -667,7 +828,10 @@  discard block
 block discarded – undo
667 828
 			</p>
668 829
 			<p>
669 830
 				<label for="notamsource">URL of your feed from notaminfo.com</label>
670
-				<input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) print $globalNOTAMSource; ?>" />
831
+				<input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) {
832
+	print $globalNOTAMSource;
833
+}
834
+?>" />
671 835
 			</p>
672 836
 			<br />
673 837
 			<p>
@@ -682,14 +846,20 @@  discard block
 block discarded – undo
682 846
 			<div id="metarsrc">
683 847
 				<p>
684 848
 					<label for="metarsource">URL of your METAR source</label>
685
-					<input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) print $globalMETARurl; ?>" />
849
+					<input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) {
850
+	print $globalMETARurl;
851
+}
852
+?>" />
686 853
 					<p class="help-block">Use {icao} to specify where we replace by airport icao. ex : http://metar.vatsim.net/metar.php?id={icao}</p>
687 854
 				</p>
688 855
 			</div>
689 856
 			<br />
690 857
 			<p>
691 858
 				<label for="bitly">Bit.ly access token api (used in search page)</label>
692
-				<input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) print $globalBitlyAccessToken; ?>" />
859
+				<input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) {
860
+	print $globalBitlyAccessToken;
861
+}
862
+?>" />
693 863
 			</p>
694 864
 			<br />
695 865
 			<p>
@@ -703,7 +873,12 @@  discard block
 block discarded – undo
703 873
 			</p>
704 874
 			<p>
705 875
 				<label for="archivemonths">Generate statistics, delete or put in archive flights older than xx months</label>
706
-				<input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) print $globalArchiveMonths; else echo '0'; ?>" />
876
+				<input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) {
877
+	print $globalArchiveMonths;
878
+} else {
879
+	echo '0';
880
+}
881
+?>" />
707 882
 				<p class="help-block">0 to disable, delete old flight if <i>Archive all flights data</i> is disabled</p>
708 883
 			</p>
709 884
 			<p>
@@ -713,12 +888,22 @@  discard block
 block discarded – undo
713 888
 			</p>
714 889
 			<p>
715 890
 				<label for="archivekeepmonths">Keep flights data for xx months in archive</label>
716
-				<input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) print $globalArchiveKeepMonths; else echo '0'; ?>" />
891
+				<input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) {
892
+	print $globalArchiveKeepMonths;
893
+} else {
894
+	echo '0';
895
+}
896
+?>" />
717 897
 				<p class="help-block">0 to disable</p>
718 898
 			</p>
719 899
 			<p>
720 900
 				<label for="archivekeeptrackmonths">Keep flights track data for xx months in archive</label>
721
-				<input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) print $globalArchiveKeepTrackMonths; else echo '0'; ?>" />
901
+				<input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) {
902
+	print $globalArchiveKeepTrackMonths;
903
+} else {
904
+	echo '0';
905
+}
906
+?>" />
722 907
 				<p class="help-block">0 to disable, should be less or egal to <i>Keep flights data</i> value</p>
723 908
 			</p>
724 909
 			<br />
@@ -727,7 +912,12 @@  discard block
 block discarded – undo
727 912
 				<input type="checkbox" name="daemon" id="daemon" value="daemon"<?php if ((isset($globalDaemon) && $globalDaemon) || !isset($globalDaemon)) { ?> checked="checked"<?php } ?> onClick="daemon_js()" />
728 913
 				<div id="cronends"> 
729 914
 					<label for="cronend">Run script for xx seconds</label>
730
-					<input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) print $globalCronEnd; else print '0'; ?>" />
915
+					<input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) {
916
+	print $globalCronEnd;
917
+} else {
918
+	print '0';
919
+}
920
+?>" />
731 921
 					<p class="help-block">Set to 0 to disable. Should be disabled if source is URL.</p>
732 922
 				</div>
733 923
 				<p class="help-block">Uncheck if the script is running as cron job</p>
@@ -768,26 +958,49 @@  discard block
 block discarded – undo
768 958
 			<br />
769 959
 			<p>
770 960
 				<label for="refresh">Show flights detected since xxx seconds</label>
771
-				<input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) echo $globalLiveInterval; else echo '200'; ?>" />
961
+				<input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) {
962
+	echo $globalLiveInterval;
963
+} else {
964
+	echo '200';
965
+}
966
+?>" />
772 967
 			</p>
773 968
 			<p>
774 969
 				<label for="maprefresh">Live map refresh (in seconds)</label>
775
-				<input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) echo $globalMapRefresh; else echo '30'; ?>" />
970
+				<input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) {
971
+	echo $globalMapRefresh;
972
+} else {
973
+	echo '30';
974
+}
975
+?>" />
776 976
 			</p>
777 977
 			<p>
778 978
 				<label for="mapidle">Map idle timeout (in minutes)</label>
779
-				<input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) echo $globalMapIdleTimeout; else echo '30'; ?>" />
979
+				<input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) {
980
+	echo $globalMapIdleTimeout;
981
+} else {
982
+	echo '30';
983
+}
984
+?>" />
780 985
 				<p class="help-block">0 to disable</p>
781 986
 			</p>
782 987
 			<br />
783 988
 			<p>
784 989
 				<label for="closestmindist">Distance to airport set as arrival (in km)</label>
785
-				<input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) echo $globalClosestMinDist; else echo '50'; ?>" />
990
+				<input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) {
991
+	echo $globalClosestMinDist;
992
+} else {
993
+	echo '50';
994
+}
995
+?>" />
786 996
 			</p>
787 997
 			<br />
788 998
 			<p>
789 999
 				<label for="aircraftsize">Size of aircraft icon on map (default to 30px if zoom > 7 else 15px), empty to default</label>
790
-				<input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) echo $globalAircraftSize;?>" />
1000
+				<input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) {
1001
+	echo $globalAircraftSize;
1002
+}
1003
+?>" />
791 1004
 			</p>
792 1005
 			<br />
793 1006
 			<p>
@@ -795,7 +1008,12 @@  discard block
 block discarded – undo
795 1008
 			    if (extension_loaded('gd') && function_exists('gd_info')) {
796 1009
 			?>
797 1010
 				<label for="aircrafticoncolor">Color of aircraft icon on map</label>
798
-				<input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) echo $globalAircraftIconColor; else echo '1a3151'; ?>" />
1011
+				<input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) {
1012
+	echo $globalAircraftIconColor;
1013
+} else {
1014
+	echo '1a3151';
1015
+}
1016
+?>" />
799 1017
 			<?php
800 1018
 				if (!is_writable('../cache')) {
801 1019
 			?>
@@ -813,8 +1031,18 @@  discard block
 block discarded – undo
813 1031
 			<p>
814 1032
 				<label for="airportzoom">Zoom level minimum to see airports icons</label>
815 1033
 				<div class="range">
816
-					<input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?>" />
817
-					<output id="range"><?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?></output>
1034
+					<input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) {
1035
+	echo $globalAirportZoom;
1036
+} else {
1037
+	echo '7';
1038
+}
1039
+?>" />
1040
+					<output id="range"><?php if (isset($globalAirportZoom)) {
1041
+	echo $globalAirportZoom;
1042
+} else {
1043
+	echo '7';
1044
+}
1045
+?></output>
818 1046
 				</div>
819 1047
 			</p>
820 1048
 		</fieldset>
@@ -842,8 +1070,12 @@  discard block
 block discarded – undo
842 1070
 	$dbhost = filter_input(INPUT_POST,'dbhost',FILTER_SANITIZE_STRING);
843 1071
 	$dbport = filter_input(INPUT_POST,'dbport',FILTER_SANITIZE_STRING);
844 1072
 
845
-	if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) $error .= 'Mysql driver for PDO must be loaded';
846
-	if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) $error .= 'PosgreSQL driver for PDO must be loaded';
1073
+	if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) {
1074
+		$error .= 'Mysql driver for PDO must be loaded';
1075
+	}
1076
+	if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) {
1077
+		$error .= 'PosgreSQL driver for PDO must be loaded';
1078
+	}
847 1079
 	
848 1080
 	$_SESSION['database_root'] = $dbroot;
849 1081
 	$_SESSION['database_rootpass'] = $dbrootpass;
@@ -910,15 +1142,23 @@  discard block
 block discarded – undo
910 1142
 	$source_city = $_POST['source_city'];
911 1143
 	$source_country = $_POST['source_country'];
912 1144
 	$source_ref = $_POST['source_ref'];
913
-	if (isset($source_id)) $source_id = $_POST['source_id'];
914
-	else $source_id = array();
1145
+	if (isset($source_id)) {
1146
+		$source_id = $_POST['source_id'];
1147
+	} else {
1148
+		$source_id = array();
1149
+	}
915 1150
 	
916 1151
 	$sources = array();
917 1152
 	foreach ($source_name as $keys => $name) {
918
-	    if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]);
919
-	    else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]);
1153
+	    if (isset($source_id[$keys])) {
1154
+	    	$sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]);
1155
+	    } else {
1156
+	    	$sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]);
1157
+	    }
1158
+	}
1159
+	if (count($sources) > 0) {
1160
+		$_SESSION['sources'] = $sources;
920 1161
 	}
921
-	if (count($sources) > 0) $_SESSION['sources'] = $sources;
922 1162
 
923 1163
 	//$sbshost = filter_input(INPUT_POST,'sbshost',FILTER_SANITIZE_STRING);
924 1164
 	//$sbsport = filter_input(INPUT_POST,'sbsport',FILTER_SANITIZE_NUMBER_INT);
@@ -958,9 +1198,14 @@  discard block
 block discarded – undo
958 1198
 	$sourcestats = $_POST['sourcestats'];
959 1199
 	$gSources = array();
960 1200
 	foreach ($host as $key => $h) {
961
-		if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) $cov = 'TRUE';
962
-		else $cov = 'FALSE';
963
-		if ($h != '') $gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov);
1201
+		if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) {
1202
+			$cov = 'TRUE';
1203
+		} else {
1204
+			$cov = 'FALSE';
1205
+		}
1206
+		if ($h != '') {
1207
+			$gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov);
1208
+		}
964 1209
 	}
965 1210
 	$settings = array_merge($settings,array('globalSources' => $gSources));
966 1211
 
@@ -984,7 +1229,9 @@  discard block
 block discarded – undo
984 1229
 	$zoidistance = filter_input(INPUT_POST,'zoidistance',FILTER_SANITIZE_NUMBER_INT);
985 1230
 	if ($zoilatitude != '' && $zoilongitude != '' && $zoidistance != '') {
986 1231
 		$settings = array_merge($settings,array('globalDistanceIgnore' => array('latitude' => $zoilatitude,'longitude' => $zoilongitude,'distance' => $zoidistance)));
987
-	} else $settings = array_merge($settings,array('globalDistanceIgnore' => array()));
1232
+	} else {
1233
+		$settings = array_merge($settings,array('globalDistanceIgnore' => array()));
1234
+	}
988 1235
 
989 1236
 	$refresh = filter_input(INPUT_POST,'refresh',FILTER_SANITIZE_NUMBER_INT);
990 1237
 	$settings = array_merge($settings,array('globalLiveInterval' => $refresh));
@@ -1023,7 +1270,9 @@  discard block
 block discarded – undo
1023 1270
 
1024 1271
 	// Create in settings.php keys not yet configurable if not already here
1025 1272
 	//if (!isset($globalImageBingKey)) $settings = array_merge($settings,array('globalImageBingKey' => ''));
1026
-	if (!isset($globalDebug)) $settings = array_merge($settings,array('globalDebug' => 'TRUE'));
1273
+	if (!isset($globalDebug)) {
1274
+		$settings = array_merge($settings,array('globalDebug' => 'TRUE'));
1275
+	}
1027 1276
 
1028 1277
 	$archive = filter_input(INPUT_POST,'archive',FILTER_SANITIZE_STRING);
1029 1278
 	if ($archive == 'archive') {
@@ -1053,24 +1302,38 @@  discard block
 block discarded – undo
1053 1302
 	}
1054 1303
 */
1055 1304
 	$settings = array_merge($settings,array('globalFlightAware' => 'FALSE'));
1056
-	if ($globalsbs == 'sbs') $settings = array_merge($settings,array('globalSBS1' => 'TRUE'));
1057
-	else $settings = array_merge($settings,array('globalSBS1' => 'FALSE'));
1058
-	if ($globalaprs == 'aprs') $settings = array_merge($settings,array('globalAPRS' => 'TRUE'));
1059
-	else $settings = array_merge($settings,array('globalAPRS' => 'FALSE'));
1305
+	if ($globalsbs == 'sbs') {
1306
+		$settings = array_merge($settings,array('globalSBS1' => 'TRUE'));
1307
+	} else {
1308
+		$settings = array_merge($settings,array('globalSBS1' => 'FALSE'));
1309
+	}
1310
+	if ($globalaprs == 'aprs') {
1311
+		$settings = array_merge($settings,array('globalAPRS' => 'TRUE'));
1312
+	} else {
1313
+		$settings = array_merge($settings,array('globalAPRS' => 'FALSE'));
1314
+	}
1060 1315
 	if ($globalivao == 'ivao') {
1061 1316
 		//$settings = array_merge($settings,array('globalIVAO' => 'TRUE','globalVATSIM' => 'FALSE'));
1062 1317
 		$settings = array_merge($settings,array('globalIVAO' => 'TRUE'));
1063
-	} else $settings = array_merge($settings,array('globalIVAO' => 'FALSE'));
1318
+	} else {
1319
+		$settings = array_merge($settings,array('globalIVAO' => 'FALSE'));
1320
+	}
1064 1321
 	if ($globalvatsim == 'vatsim') {
1065 1322
 		//$settings = array_merge($settings,array('globalVATSIM' => 'TRUE','globalIVAO' => 'FALSE'));
1066 1323
 		$settings = array_merge($settings,array('globalVATSIM' => 'TRUE'));
1067
-	} else $settings = array_merge($settings,array('globalVATSIM' => 'FALSE'));
1324
+	} else {
1325
+		$settings = array_merge($settings,array('globalVATSIM' => 'FALSE'));
1326
+	}
1068 1327
 	if ($globalphpvms == 'phpvms') {
1069 1328
 		$settings = array_merge($settings,array('globalphpVMS' => 'TRUE'));
1070
-	} else $settings = array_merge($settings,array('globalphpVMS' => 'FALSE'));
1329
+	} else {
1330
+		$settings = array_merge($settings,array('globalphpVMS' => 'FALSE'));
1331
+	}
1071 1332
 	if ($globalvatsim == 'vatsim' || $globalivao == 'ivao' || $globalphpvms == 'phpvms') {
1072 1333
 		$settings = array_merge($settings,array('globalSchedulesFetch' => 'FALSE','globalTranslationFetch' => 'FALSE'));
1073
-	} else $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE'));
1334
+	} else {
1335
+		$settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE'));
1336
+	}
1074 1337
 	
1075 1338
 
1076 1339
 
@@ -1164,7 +1427,9 @@  discard block
 block discarded – undo
1164 1427
 		$settings = array_merge($settings,array('globalMapRoute' => 'FALSE'));
1165 1428
 	}
1166 1429
 
1167
-	if (!isset($globalTransaction)) $settings = array_merge($settings,array('globalTransaction' => 'TRUE'));
1430
+	if (!isset($globalTransaction)) {
1431
+		$settings = array_merge($settings,array('globalTransaction' => 'TRUE'));
1432
+	}
1168 1433
 
1169 1434
 	// Set some defaults values...
1170 1435
 	if (!isset($globalAircraftImageSources)) {
@@ -1179,15 +1444,23 @@  discard block
 block discarded – undo
1179 1444
 
1180 1445
 	$settings = array_merge($settings,array('globalInstalled' => 'TRUE'));
1181 1446
 
1182
-	if ($error == '') settings::modify_settings($settings);
1183
-	if ($error == '') settings::comment_settings($settings_comment);
1447
+	if ($error == '') {
1448
+		settings::modify_settings($settings);
1449
+	}
1450
+	if ($error == '') {
1451
+		settings::comment_settings($settings_comment);
1452
+	}
1184 1453
 	if ($error != '') {
1185 1454
 		print '<div class="info column">'.$error.'</div>';
1186 1455
 		require('../footer.php');
1187 1456
 		exit;
1188 1457
 	} else {
1189
-		if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') $_SESSION['waypoints'] = 1;
1190
-		if (isset($_POST['owner']) && $_POST['owner'] == 'owner') $_SESSION['owner'] = 1;
1458
+		if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') {
1459
+			$_SESSION['waypoints'] = 1;
1460
+		}
1461
+		if (isset($_POST['owner']) && $_POST['owner'] == 'owner') {
1462
+			$_SESSION['owner'] = 1;
1463
+		}
1191 1464
 		if (isset($_POST['createdb'])) {
1192 1465
 			$_SESSION['install'] = 'database_create';
1193 1466
 		} else {
@@ -1216,13 +1489,19 @@  discard block
 block discarded – undo
1216 1489
 	$pop = false;
1217 1490
 	foreach ($_SESSION['done'] as $done) {
1218 1491
 	    print '<li>'.$done.'....<strong>SUCCESS</strong></li>';
1219
-	    if ($done == 'Create database') $pop = true;
1220
-	    if ($_SESSION['install'] == 'database_create') $pop = true;
1492
+	    if ($done == 'Create database') {
1493
+	    	$pop = true;
1494
+	    }
1495
+	    if ($_SESSION['install'] == 'database_create') {
1496
+	    	$pop = true;
1497
+	    }
1221 1498
 	}
1222 1499
 	if ($pop) {
1223 1500
 	    sleep(5);
1224 1501
 	    print '<li>Create and import tables....<img src="../images/loading.gif" /></li>';
1225
-	} else print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>';
1502
+	} else {
1503
+		print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>';
1504
+	}
1226 1505
 	print '</div></ul>';
1227 1506
 	print '<div id="error"></div>';
1228 1507
 /*	foreach ($_SESSION['done'] as $done) {
Please login to merge, or discard this patch.