Passed
Pull Request — master (#14)
by Mark
02:12
created
syntax/olmap.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -617,8 +617,9 @@
 block discarded – undo
617 617
                 . "%2C" . $bbox ['maxlon'];
618 618
             $imgUrl .= "&dcl=1";
619 619
         }
620
-        if(strpos($imgUrl, "?") === false)
621
-            $imgUrl .= "?";
620
+        if(strpos($imgUrl, "?") === false) {
621
+                    $imgUrl .= "?";
622
+        }
622 623
 
623 624
         //$imgUrl .= "&ms=" . str_replace ( "px", "", $gmap ['width'] ) . ","
624 625
         //          . str_replace ( "px", "", $gmap ['height'] );
Please login to merge, or discard this patch.
syntax/searchlayer.php 1 patch
Braces   +11 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,15 +14,19 @@  discard block
 block discarded – undo
14 14
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 15
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
  */
17
-if (! defined ( 'DOKU_INC' ))
17
+if (! defined ( 'DOKU_INC' )) {
18 18
 	die ();
19
+}
19 20
 
20
-if (! defined ( 'DOKU_LF' ))
21
+if (! defined ( 'DOKU_LF' )) {
21 22
 	define ( 'DOKU_LF', "\n" );
22
-if (! defined ( 'DOKU_TAB' ))
23
+}
24
+if (! defined ( 'DOKU_TAB' )) {
23 25
 	define ( 'DOKU_TAB', "\t" );
24
-if (! defined ( 'DOKU_PLUGIN' ))
26
+}
27
+if (! defined ( 'DOKU_PLUGIN' )) {
25 28
 	define ( 'DOKU_PLUGIN', DOKU_INC . 'lib/plugins/' );
29
+}
26 30
 
27 31
 require_once DOKU_PLUGIN . 'syntax.php';
28 32
 /**
@@ -108,8 +112,9 @@  discard block
 block discarded – undo
108 112
 	 * @see DokuWiki_Syntax_Plugin::render()
109 113
 	 */
110 114
 	public function render($mode, Doku_Renderer $renderer, $data) {
111
-		if ($mode != 'xhtml')
112
-			return false;
115
+		if ($mode != 'xhtml') {
116
+					return false;
117
+		}
113 118
 
114 119
 		static $loadedOLlib = false;
115 120
 		if (! $loadedOLlib) {
Please login to merge, or discard this patch.
StaticMap.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -471,8 +471,9 @@
 block discarded – undo
471 471
      *          for better proxy handling...
472 472
      */
473 473
     public function fetchTile(string $url) {
474
-        if($this->useTileCache && ($cached = $this->checkTileCache($url)))
475
-            return $cached;
474
+        if($this->useTileCache && ($cached = $this->checkTileCache($url))) {
475
+                    return $cached;
476
+        }
476 477
 
477 478
         $_UA = 'Mozilla/4.0 (compatible; DokuWikiSpatial HTTP Client; ' . PHP_OS . ')';
478 479
         if(function_exists("curl_init")) {
Please login to merge, or discard this patch.