summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-16 19:59:27 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-16 19:59:27 +0000
commit69d6404f260fb30c41db9a7b7852beaae0dced95 (patch)
treea380f378c6085e076a0d5658c60d75d82bb95e45 /lib/action.php
parented2fd6da6bbae0ccd433fead33c82f46e86a801e (diff)
parent8abf9351860408db930ce9f423f94baa97ed5f56 (diff)
Merge branch 'uiredesign' of /var/www/trunk into uiredesign
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 1edfe157f..5ff536dab 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');
}