diff options
author | Adrian Lang <mail@adrianlang.de> | 2009-02-21 19:04:27 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-27 15:39:10 -0800 |
commit | 89197210cf706683c8ab22deedc43724fa1fe235 (patch) | |
tree | ebf7567410700e52172e15cafdd0ee0c7afd092b | |
parent | 42eecfabca67e5caee1f4e5894b711cacd0a9f9d (diff) |
Fixes #1067: Avatar stretched on authorize remote subscription page. The img tag used a wrong class which had a width: 100% applied.
-rw-r--r-- | actions/userauthorization.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/userauthorization.php b/actions/userauthorization.php index ed17ceec9..0dc1841d4 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -105,7 +105,7 @@ class UserauthorizationAction extends Action $this->elementStart('div', 'profile'); if ($avatar) { $this->element('img', array('src' => $avatar, - 'class' => 'avatar profile', + 'class' => 'avatar', 'width' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE, 'alt' => $nickname)); |