Completed
Push — master ( b5479f...9bd1df )
by Mark
02:19
created
helper/index.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -286,8 +286,8 @@
 block discarded – undo
286 286
 		$min = $this->convertRationaltoFloat($param [1]) / 60;
287 287
 		$sec = $this->convertRationaltoFloat($param [2]) / 60 / 60;
288 288
 		// Hemisphere (N, S, W or E)
289
-        $hem = ($param [3] === 'N' || $param [3] === 'E') ? 1 : -1;
290
-        return $hem * ($deg + $min + $sec);
289
+		$hem = ($param [3] === 'N' || $param [3] === 'E') ? 1 : -1;
290
+		return $hem * ($deg + $min + $sec);
291 291
 	}
292 292
 
293 293
 	public function convertRationaltoFloat($param) {
Please login to merge, or discard this patch.