Completed
Push — master ( 68e15a...5a472b )
by Michael
03:04
created
action/ajax.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,6 +122,6 @@
 block discarded – undo
122 122
         if ($inner[0] === '#') {
123 123
             return dokuwiki\plugin\prosemirror\parser\LocalLinkNode::resolveLocalLink($inner, $curId);
124 124
         }
125
-       return \dokuwiki\plugin\prosemirror\parser\InternalLinkNode::resolveLink($inner, $curId);
125
+        return \dokuwiki\plugin\prosemirror\parser\InternalLinkNode::resolveLink($inner, $curId);
126 126
     }
127 127
 }
Please login to merge, or discard this patch.
action/editor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         // output data and editor field
56 56
 
57 57
         /** @var Doku_Form $form */
58
-        $form =& $event->data;
58
+        $form = & $event->data;
59 59
 
60 60
         // data for handsontable
61 61
         $form->addHidden('prosemirror_json', p_render('prosemirror', $instructions, $info));
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         }
70 70
 
71 71
         $linkForm = new dokuwiki\Form\Form(['class' => 'plugin_prosemirror_linkform', 'id' => 'prosemirror-linkform']);
72
-        $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset');;
72
+        $linkForm->addFieldsetOpen('Links')->addClass('js-link-fieldset'); ;
73 73
         $iwOptions = array_keys(getInterwiki());
74 74
         $linkForm->addDropdown('iwshortcut', $iwOptions, 'InterWiki')->attr('required', 'required');
75 75
         $linkForm->addTextInput('linktarget', 'Link target')->attr('required', 'required');
Please login to merge, or discard this patch.