summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-01-06 11:31:06 +0100
committerSarven Capadisli <csarven@status.net>2010-01-06 11:31:06 +0100
commitd7e2a2949869dfc1b84d96259471868e75fc7899 (patch)
tree3000832b9b87963e78437083a4c0c30721fb76d0 /plugins
parentc95114ea02757cf114ae34f33c9a7cacee49a8da (diff)
Removed unnecessary internal style
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Recaptcha/RecaptchaPlugin.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php
index db118dbb8..3665214f8 100644
--- a/plugins/Recaptcha/RecaptchaPlugin.php
+++ b/plugins/Recaptcha/RecaptchaPlugin.php
@@ -62,9 +62,8 @@ class RecaptchaPlugin extends Plugin
function onEndRegistrationFormData($action)
{
- $action->style('#recaptcha_area{float:left;}');
$action->elementStart('li');
- $action->raw('<label for="recaptcha_area">Captcha</label>');
+ $action->raw('<label for="recaptcha">Captcha</label>');
if($this->checkssl() === true) {
$action->raw(recaptcha_get_html($this->public_key), null, true);
} else {