diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-09 19:12:50 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-09 19:12:50 +0000 |
commit | 2197d0bacf44d0f2d0ab1a58446c9f4c6bd14190 (patch) | |
tree | 58baf9afbff901ba49fca47f6909ff4ba3af8e6b | |
parent | db587562756483ec285b274adc073df29d4031ae (diff) |
Added width/height attribute and values for the creative commons image
-rw-r--r-- | lib/action.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index da5b48858..95ee10c64 100644 --- a/lib/action.php +++ b/lib/action.php @@ -772,7 +772,9 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('p'); $this->element('img', array('id' => 'license_cc', 'src' => common_config('license', 'image'), - 'alt' => common_config('license', 'title'))); + 'alt' => common_config('license', 'title'), + 'width' => '80', + 'height' => '15')); //TODO: This is dirty: i18n $this->text(_('All '.common_config('site', 'name').' content and data are available under the ')); $this->element('a', array('class' => 'license', |