mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
10 lines
255 B
PHP
10 lines
255 B
PHP
<?php
|
|
/**
|
|
* This function is beign used to load info that's needed for the register page.
|
|
* @author Daan Janssens, mentored by Matthew Lagoe
|
|
*/
|
|
function register(){
|
|
global $TOS_URL;
|
|
$pageElements['TOS_URL'] = $TOS_URL;
|
|
return $pageElements;
|
|
}
|