1
1
Fork 0

show creative commons coverage on registration page

This commit is contained in:
Friendika 2010-12-24 20:23:49 -08:00
commit ded2812799
5 changed files with 26 additions and 8 deletions

View file

@ -357,6 +357,9 @@ function register_content(&$a) {
$oidlabel = t("Your OpenID \x28optional\x29: ");
}
$license = t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.');
$o = load_view_file("view/register.tpl");
$o = replace_macros($o, array(
'$oidhtml' => $oidhtml,
@ -377,6 +380,7 @@ function register_content(&$a) {
'$username' => $username,
'$email' => $email,
'$nickname' => $nickname,
'$license' => $license,
'$sitename' => $a->get_hostname()
));
return $o;