diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-19 21:56:55 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-19 21:56:55 +0000 |
commit | 77790ab7687c6ef6c86f502c27158ef71cdffa76 (patch) | |
tree | 40fb6c339b1d874b3b9346a3571201e26aeadf32 /lib/subscribeform.php | |
parent | bf15df5b1951bc5dc327ec55d578b2ccdaf858a9 (diff) |
Featuerd profile list markup
Minor class change to (un)subscribeform.php
Diffstat (limited to 'lib/subscribeform.php')
-rw-r--r-- | lib/subscribeform.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/subscribeform.php b/lib/subscribeform.php index 996729a28..8b69efd1a 100644 --- a/lib/subscribeform.php +++ b/lib/subscribeform.php @@ -80,6 +80,19 @@ class SubscribeForm extends Form return 'subscribe-' . $this->profile->id; } + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_subscribe'; + } + + /** * Action of the form * @@ -114,4 +127,4 @@ class SubscribeForm extends Form { $this->out->submit('submit', _('Subscribe')); } -}
\ No newline at end of file +} |