Completed
Push — 1.1 ( 530a78...06dc44 )
by Daniel
02:01 queued 21s
created
code/GoogleMapField.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,9 @@
 block discarded – undo
101 101
 	public function getOption($name) {
102 102
 		// Quicker execution path for "."-free names
103 103
 		if (strpos($name, '.') === false) {
104
-			if (isset($this->options[$name])) return $this->options[$name];
104
+			if (isset($this->options[$name])) {
105
+				return $this->options[$name];
106
+			}
105 107
 		} else {
106 108
 			$names = explode('.', $name);
107 109
 
Please login to merge, or discard this patch.