From 4ba1a1738d985a174121eac41080926d20b35d2b Mon Sep 17 00:00:00 2001 From: omidmottaghi Date: Wed, 27 Dec 2006 10:39:06 +0000 Subject: [PATCH] added a class to captcha-image-div. captcha MUST be LTR in all languages. --- .../serendipity_event_spamblock/serendipity_event_spamblock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php index 90d034b..5b1d85d 100644 --- a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php +++ b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php @@ -949,7 +949,7 @@ var $filter_defaults; $bgcolors = explode(',', $this->get_config('captcha_color', '255,0,255')); $hexval = '#' . dechex(trim($bgcolors[0])) . dechex(trim($bgcolors[1])) . dechex(trim($bgcolors[2])); $this->random_string($max_char, $min_char); - echo '
'; + echo '
'; for ($i = 1; $i <= $max_char; $i++) { printf('CAPTCHA ' . $i . '', $serendipity['baseURL'] . ($serendipity['rewrite'] == 'none' ? $serendipity['indexFile'] . '?/' : '') . 'plugin/captcha_' . $i . '_' . md5(time()), -- 2.39.5