diff options
author | Sarven Capadisli <csarven@status.net> | 2009-10-31 17:16:37 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-10-31 17:16:37 +0100 |
commit | 48f33f781a91db7178a4f5046885a74dc484e629 (patch) | |
tree | 30fb8019b7cb31fda63f2ee100ffa88da250652c /lib/messageform.php | |
parent | f9bb95174b93de4ce28167eea21535a01394f71f (diff) |
Using 'form_notice' class instead of 'form' to group both forms
Diffstat (limited to 'lib/messageform.php')
-rw-r--r-- | lib/messageform.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/messageform.php b/lib/messageform.php index e25ebfa08..b034be312 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -80,11 +80,22 @@ class MessageForm extends Form /** * ID of the form * - * @return int ID of the form + * @return string ID of the form */ function id() { + return 'form_notice-direct'; + } + + /** + * Class of the form + * + * @return string class of the form + */ + + function formClass() + { return 'form_notice'; } |