Passed
Branch master (7373e5)
by Michael
02:30
created
Category
action/ajax.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         $params = '';
90 90
         $parts  = explode('?', $inner, 2);
91 91
         $resolvedPageId = $parts[0];
92
-        if(count($parts) === 2) {
92
+        if (count($parts) === 2) {
93 93
             $params = $parts[1];
94 94
         }
95 95
         $ns = getNS($curId);
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $default = $xhtml_renderer->_simpleTitle($inner);
98 98
         resolve_pageid($ns, $resolvedPageId, $exists);
99 99
 
100
-        if(useHeading('content')) {
100
+        if (useHeading('content')) {
101 101
             $heading = p_get_first_heading($resolvedPageId);
102 102
         }
103 103
         if (empty($heading)) {
Please login to merge, or discard this patch.
action/editor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         // output data and editor field
54 54
 
55 55
         /** @var Doku_Form $form */
56
-        $form =& $event->data;
56
+        $form = & $event->data;
57 57
 
58 58
         // data for handsontable
59 59
         $form->addHidden('prosemirror_json', p_render('prosemirror', $instructions, $info));
Please login to merge, or discard this patch.
parser/LinkNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     protected function getDefaultLinkSyntax2($inner)
49 49
     {
50 50
         $title = '';
51
-        $prefix = $this->textNode->getPrefixSyntax();;
51
+        $prefix = $this->textNode->getPrefixSyntax(); ;
52 52
         $postfix = $this->textNode->getPostfixSyntax();
53 53
 
54 54
         if (!empty($this->attrs['data-name'])) {
Please login to merge, or discard this patch.