]> git.mjollnir.org Git - s9y.git/commitdiff
allow more customization of the commentdirections
authorgarvinhicking <garvinhicking>
Thu, 1 Dec 2005 11:13:24 +0000 (11:13 +0000)
committergarvinhicking <garvinhicking>
Thu, 1 Dec 2005 11:13:24 +0000 (11:13 +0000)
plugins/serendipity_event_bbcode/serendipity_event_bbcode.php
plugins/serendipity_event_emoticate/serendipity_event_emoticate.php
plugins/serendipity_event_s9ymarkup/serendipity_event_s9ymarkup.php
plugins/serendipity_event_spamblock/serendipity_event_spamblock.php
plugins/serendipity_event_textile/serendipity_event_textile.php
plugins/serendipity_event_textwiki/serendipity_event_textwiki.php

index c3334db65374ba62f0b096754baeeb28ef84a316..f9994c3a05c6ac2f647886c484265da7046dad3d 100644 (file)
@@ -237,7 +237,7 @@ class serendipity_event_bbcode extends serendipity_event
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('COMMENT', true))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_BBCODE_TRANSFORM . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_bbcode">' . PLUGIN_EVENT_BBCODE_TRANSFORM . '</div>';
                     }
                     return true;
                     break;
index 40f577899323c4f2b0667098903c8ac03719a057..f9d59cd7003c511676378aca653469e4489d6cd8 100644 (file)
@@ -170,7 +170,7 @@ class serendipity_event_emoticate extends serendipity_event
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('COMMENT', true))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_EMOTICATE_TRANSFORM . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_emoticate">' . PLUGIN_EVENT_EMOTICATE_TRANSFORM . '</div>';
                     }
                     return true;
                     break;
index 81dbd5e8f60d19a1cd57c7b121ea095151a488f7..971d414cdd04e51ebb376c1bdef88e2b2f0987b9 100644 (file)
@@ -100,7 +100,7 @@ class serendipity_event_s9ymarkup extends serendipity_event
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('COMMENT', true))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_S9YMARKUP_TRANSFORM . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_s9ymarkup">' . PLUGIN_EVENT_S9YMARKUP_TRANSFORM . '</div>';
                     }
                     return true;
                     break;
index c7a53eacb0850d18622fb2787151fa4af89f075a..d1aed6eeece8623f6230dd6b66d50134a1d7b6ac 100644 (file)
@@ -562,11 +562,11 @@ var $filter_defaults;
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('hide_email', false))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_NOTICE . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_spamblock">' . PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_NOTICE . '</div>';
                     }
 
                     if ($show_captcha) {
-                        echo '<div class="serendipity_commentDirection">';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_captcha">';
                         if (!isset($serendipity['POST']['preview']) || strtolower($serendipity['POST']['captcha'] != strtolower($_SESSION['spamblock']['captcha']))) {
                             echo '<br />' . PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC . '<br />';
                             if ($use_gd) {
index 4ad861da01baf543058b8e673dd064477ad84766..cfe470eeb15e8ef6d27b623b986d1460cba178c0 100644 (file)
@@ -157,7 +157,7 @@ class serendipity_event_textile extends serendipity_event
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('COMMENT', true))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_TEXTILE_TRANSFORM . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_textile">' . PLUGIN_EVENT_TEXTILE_TRANSFORM . '</div>';
                     }
                     return true;
                     break;
index e9c4debe522f5c07317a79d4f5abe1925eb3b798..742b4a47ad198cb0a2e580dd88d7442225cb8355 100644 (file)
@@ -592,7 +592,7 @@ class serendipity_event_textwiki extends serendipity_event
 
                 case 'frontend_comment':
                     if (serendipity_db_bool($this->get_config('COMMENT', true))) {
-                        echo '<div class="serendipity_commentDirection">' . PLUGIN_EVENT_TEXTWIKI_TRANSFORM . '</div>';
+                        echo '<div class="serendipity_commentDirection serendipity_comment_textwiki">' . PLUGIN_EVENT_TEXTWIKI_TRANSFORM . '</div>';
                     }
                     return true;
                     break;