changed git call from https to git readonly
[atutor.git] / mods / wiki / plugins / linking / selfbacklinks.php
1 <?php
2
3 /*
4    Any occourence of the current page name will point to the links/
5    page (BackLinks) for itself.   
6 */
7
8 $ewiki_plugins["format_prepare_linking"][] = "ewiki_self_backlink";
9
10 function ewiki_self_backlink(&$src) {
11    global $ewiki_links, $ewiki_id;
12    $ewiki_links[$ewiki_id] = ewiki_script("links", $ewiki_id);
13 }
14
15 ?>