summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-16 15:52:17 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-16 15:52:17 +0000
commit4549e577ac2c349881c7a411c0e25d5bdd0a0c51 (patch)
treeea100bea4ca66ab551e857f46d8032b58a0fd1eb /lib/action.php
parent0b8131deec0b6fb2056b065462a22437e9ba6962 (diff)
Updating Creative Commons text and image
Diffstat (limited to 'lib/action.php')
-rw-r--r--lib/action.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/action.php b/lib/action.php
index 792b9c057..129a4b24b 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -436,16 +436,16 @@ class Action extends HTMLOutputter // lawsuit
$this->element('dt', array('id' => 'site_content_license'), _('Laconica software license'));
$this->elementStart('dd', array('id' => 'site_content_license_cc'));
$this->elementStart('p');
- $this->text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
+ $this->element('img', array('id' => 'license_cc',
+ 'src' => common_config('license', 'image'),
+ 'alt' => common_config('license', 'title')));
+ $this->text(_('All criti.ca content and data are available under the '));
$this->element('a', array('class' => 'license',
'rel' => 'external license',
'href' => common_config('license', 'url')),
common_config('license', 'title'));
- $this->text(_('. Contributors should be attributed by full name or nickname.'));
+ $this->text(_('license.'));
$this->elementEnd('p');
- $this->element('img', array('id' => 'license_cc',
- 'src' => common_config('license', 'image'),
- 'alt' => common_config('license', 'title')));
$this->elementEnd('dd');
}