From f2673c082ff3a379f9295ef970a53d99bd3bfd2d Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 5 Jun 2006 17:20:29 +0000 Subject: [PATCH] no nofollow for img tags --- .../serendipity_event_spamblock.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php index 51d9c78..928c073 100644 --- a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php +++ b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php @@ -857,7 +857,7 @@ var $filter_defaults; if (!isset($serendipity['POST']['preview']) || strtolower($serendipity['POST']['captcha'] != strtolower($_SESSION['spamblock']['captcha']))) { echo '
' . PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC . '
'; if ($use_gd) { - printf('CAPTCHA', + printf('CAPTCHA', $serendipity['baseURL'] . ($serendipity['rewrite'] == 'none' ? $serendipity['indexFile'] . '?/' : '') . 'plugin/captcha_' . md5(time()), htmlspecialchars(PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC2) ); @@ -867,7 +867,7 @@ var $filter_defaults; $this->random_string($max_char, $min_char); echo '
'; for ($i = 1; $i <= $max_char; $i++) { - printf('CAPTCHA ' . $i . '', + printf('CAPTCHA ' . $i . '', $serendipity['baseURL'] . ($serendipity['rewrite'] == 'none' ? $serendipity['indexFile'] . '?/' : '') . 'plugin/captcha_' . $i . '_' . md5(time()), htmlspecialchars(PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC2) ); -- 2.39.5