summaryrefslogtreecommitdiff
path: root/actions/userauthorization.php
diff options
context:
space:
mode:
authorAdrian Lang <mail@adrianlang.de>2009-02-21 19:04:27 +0100
committerEvan Prodromou <evan@controlyourself.ca>2009-02-27 15:39:10 -0800
commit89197210cf706683c8ab22deedc43724fa1fe235 (patch)
treeebf7567410700e52172e15cafdd0ee0c7afd092b /actions/userauthorization.php
parent42eecfabca67e5caee1f4e5894b711cacd0a9f9d (diff)
Fixes #1067: Avatar stretched on authorize remote subscription page. The img tag used a wrong class which had a width: 100% applied.
Diffstat (limited to 'actions/userauthorization.php')
-rw-r--r--actions/userauthorization.php2
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));