changed git call from https to git readonly
[atutor.git] / mods / wiki / plugins / appearance / listpages_br.php
1 <?php
2
3  # this plugin prints out <br /> - separated lists
4  # Carsten Senf <ewiki@csenf.de>
5
6
7  $ewiki_plugins["list_pages"][] = "ewiki_list_pages_fancy3";
8
9
10  function ewiki_list_pages_fancy3($lines) {
11
12     return join("<br />", $lines);
13  }
14
15
16 ?>