Completed
Pull Request — master (#930)
by Mark
12:26
created
app/Database.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,8 +85,7 @@
 block discarded – undo
85 85
 		// Create the underlying PDO object
86 86
 		self::$pdo = new PDO(
87 87
 			(substr($DBHOST, 0, 1) === '/' ?
88
-				"mysql:unix_socket={$DBHOST};dbname={$DBNAME}" :
89
-				"mysql:host={$DBHOST};dbname={$DBNAME};port={$DBPORT}"
88
+				"mysql:unix_socket={$DBHOST};dbname={$DBNAME}" : "mysql:host={$DBHOST};dbname={$DBNAME};port={$DBPORT}"
90 89
 			),
91 90
 			$DBUSER, $DBPASS,
92 91
 			array(
Please login to merge, or discard this patch.
app/Controller/RelationshipController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 			while (list(, $next) = each($queue)) {
64 64
 				// For each family on the path
65 65
 				for ($n = count($next['path']) - 2; $n >= 1; $n -= 2) {
66
-					$exclude   = $next['exclude'];
66
+					$exclude = $next['exclude'];
67 67
 					if (count($exclude) >= $recursion) {
68 68
 						continue;
69 69
 					}
Please login to merge, or discard this patch.
app/Module/GoogleMapsModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2472,7 +2472,7 @@
 block discarded – undo
2472 2472
 		foreach ($gmarks as $key => $gmark) {
2473 2473
 			echo '<tr>';
2474 2474
 			echo '<td class="facts_label">';
2475
-			echo '<a href="#" onclick="return myclick(\'', Filter::escapeHtml((string)array_search($gmark['place'], $gunique)), '\')">', $gmark['fact_label'], '</a></td>';
2475
+			echo '<a href="#" onclick="return myclick(\'', Filter::escapeHtml((string) array_search($gmark['place'], $gunique)), '\')">', $gmark['fact_label'], '</a></td>';
2476 2476
 			echo '<td class="', $gmark['class'], '" style="white-space: normal">';
2477 2477
 			if ($gmark['info']) {
2478 2478
 				echo '<span class="field">', Filter::escapeHtml($gmark['info']), '</span><br>';
Please login to merge, or discard this patch.