-
Learn how improve this page
+
Learn How To Improve This Page
•
Submit a Pull Request
•
@@ -421,3 +438,25 @@ function relTime(DateTime $date) {
}
return $out;
}
+
+function contributors($setup) {
+ if (!isset($_GET["contributors"])
+ || !isset($setup["history"]["contributors"])
+ || count($setup["history"]["contributors"]) < 1) {
+ return;
+ }
+
+ $contributorList = "
" . implode("", $setup["history"]["contributors"]) . "";
+
+ echo <<
+ Output Buffering Control
+ The following have authored commits that contributed to this page:
+
+
+CONTRIBUTORS;
+ manual_footer($setup);
+ exit;
+}