Commit 65021dd8dd738dd16d8307e837d82e1923d0b096

Allow [Page|Page Description] intrawiki links.
Thanks to Maximilian Mehnert.
index.php
(1 / 0)
  
172172
173173 // WikiLinkify
174174 $text = preg_replace('@\[([A-Z]\w+)\]@', '<a href="' . $SCRIPT_URL . '/$1">$1</a>', $text);
175 $text = preg_replace('@\[([A-Z]\w+)\|([\w\s]+)\]@', '<a href="' . $SCRIPT_URL . '/$1">$2</a>', $text);
175176
176177 // Textilify
177178 $textile = new Textile();