]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove license block
authorEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 19:51:34 +0000 (15:51 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 19:51:34 +0000 (15:51 -0400)
darcs-hash:20080610195134-84dde-48212ca46f4467ef1bf72a2d49e346dc03308c52.gz

lib/util.php

index a7570e814e5e4987066b403511c61c7be3724f30..e0f4a4e9960e94772cbb4dd4b8ee1dab72724644 100644 (file)
@@ -185,7 +185,19 @@ function common_show_footer() {
        common_element_end('div'); # content div
        common_foot_menu();
        common_element_start('div', 'footer');
-       common_license_block();
+       global $config, $xw;
+       common_element('img', array('class' => 'license',
+                                                               'id' => 'cc',
+                                                               'src' => $config['license']['image'],
+                                                               'alt' => $config['license']['title']));
+       common_element_start('p');
+       common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
+       common_element('a', array('class' => 'license',
+                                                         'rel' => 'license',
+                                                         href => $config['license']['url']),
+                                  $config['license']['title']);
+       common_text(_t('. Contributors should be attributed by full name or nickname.'));
+       common_element_end('p');
        common_element_end('div');
        common_element_end('div');
        common_element_end('body');
@@ -203,25 +215,6 @@ function common_raw($xml) {
        $xw->writeRaw($xml);
 }
 
-function common_license_block() {
-       global $config, $xw;
-       common_element_start('p', 'license');
-       common_element_start('a', array('class' => 'license',
-                                                                       'rel' => 'license',
-                                                                       href => $config['license']['url']));
-       common_element('img', array('class' => 'license',
-                                                               'src' => $config['license']['image'],
-                                                               'alt' => $config['license']['title']));
-       common_element_end('a');
-       common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
-       common_element('a', array('class' => 'license',
-                                                         'rel' => 'license',
-                                                         href => $config['license']['url']),
-                                  $config['license']['title']);
-       common_text(_t('. Contributors should be attributed by full name or nickname.'));
-       common_element_end('p');
-}
-
 function common_nav_menu() {
        $user = common_current_user();
        common_element_start('ul', array('id' => 'nav'));