Commit b505d9db3df565a4c77b0d245547d86410104b54

fixed 'Notice: undefined variable m on line 242' (kudos to Timothy Boronczyk)
creole.php
(1 / 1)
  
239239 preg_match('/(.*?):(.*)/', $matches[1][0], $m);
240240 }
241241
242 if (!$m || !isset($options['interwiki'][$m[1]])) {
242 if (!isset($m[1]) || !isset($options['interwiki'][$m[1]])) {
243243 return parent::build($node, $matches, $options);
244244 }
245245