changed git call from https to git readonly
[atutor.git] / mods / wiki / plugins / linking / selfmetawiki.php
1 <?php
2
3 /*
4    any SelfLink on the current page will be redirected to MetaWiki:
5 */
6
7 $ewiki_plugins["format_prepare_linking"][] = "ewiki_self_metawiki";
8
9 function ewiki_self_metawiki(&$src) {
10    global $ewiki_links, $ewiki_id;
11    $ewiki_links[$ewiki_id] = "http://sunir.org/apps/meta.pl?".urlencode($ewiki_id);
12 }
13
14 ?>