diff options
author | Friendika <info@friendika.com> | 2010-12-24 20:23:49 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-24 20:23:49 -0800 |
commit | ded2812799a63ba159072281d04cb08e1128b4af (patch) | |
tree | 41935fa28641e174b2a1057c7137460a2d1dad9e /mod/register.php | |
parent | 3ba322889fdfecc07099377cf6e28c4b2fb30e59 (diff) | |
download | volse-hubzilla-ded2812799a63ba159072281d04cb08e1128b4af.tar.gz volse-hubzilla-ded2812799a63ba159072281d04cb08e1128b4af.tar.bz2 volse-hubzilla-ded2812799a63ba159072281d04cb08e1128b4af.zip |
show creative commons coverage on registration page
Diffstat (limited to 'mod/register.php')
-rw-r--r-- | mod/register.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/register.php b/mod/register.php index d9dae49a2..bd169fbbb 100644 --- a/mod/register.php +++ b/mod/register.php @@ -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; |