Completed
Pull Request — master (#23)
by
unknown
04:09
created
_test/syntax_exclude.test.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                             3,
105 105
                             $wikilinks->contents()->length,
106 106
                             'There should be 3 backlinks'
107
-                           );
107
+                            );
108 108
 
109 109
         $lastlink = pq('a:last', $wikilinks);
110 110
         dbglog($lastlink->text(), "last backlink");
@@ -112,6 +112,6 @@  discard block
 block discarded – undo
112 112
                             'A link to Bob Ross',
113 113
                             $lastlink->text(),
114 114
                             'The last backlink should be "A link to Bob Ross"'
115
-                           );
115
+                            );
116 116
     }
117 117
 }
Please login to merge, or discard this patch.
_test/syntax.test.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                             4,
136 136
                             $wikilinks->contents()->length,
137 137
                             'There should be 4 backlinks'
138
-                           );
138
+                            );
139 139
 
140 140
         $lastlink = pq('a:last', $wikilinks);
141 141
         dbglog($lastlink->text(), "last backlink");
@@ -143,6 +143,6 @@  discard block
 block discarded – undo
143 143
                             $lastlink->text(),
144 144
                             'A link to Bob Ross',
145 145
                             'The last backlink should be a link to Bob Ross'
146
-                           );
146
+                            );
147 147
     }
148 148
 }
Please login to merge, or discard this patch.
syntax.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,11 +91,11 @@
 block discarded – undo
91 91
             if ($INFO != null) {
92 92
                 $id = $INFO['id'];
93 93
             }
94
-	    $match = $data[0];
95
-	    $match = ($match == '.') ? $id : $match;
94
+        $match = $data[0];
95
+        $match = ($match == '.') ? $id : $match;
96 96
             if (strstr($match, ".:")) {
97 97
                 resolve_pageid(getNS($id), $match, $exists);
98
-	    }
98
+        }
99 99
             // dbglog($match, "renderer final");
100 100
 
101 101
             $renderer->info['cache'] = false;
Please login to merge, or discard this patch.