diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 06:31:53 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 06:31:53 +0000 |
commit | 6c7842129841878b65c1d686de64f98f1edcb16f (patch) | |
tree | 613e976c0f2841cb23c36648bc740308f0b3973f /lib/nudgeform.php | |
parent | 9376003871652300b5960437fd37461fdd85e63b (diff) |
Moved common_profile_new_message_nudge() to showstream.php
Diffstat (limited to 'lib/nudgeform.php')
-rw-r--r-- | lib/nudgeform.php | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/lib/nudgeform.php b/lib/nudgeform.php index 7d04e11e4..6374a7698 100644 --- a/lib/nudgeform.php +++ b/lib/nudgeform.php @@ -77,9 +77,22 @@ class NudgeForm extends Form function id() { - return 'nudge'; + return 'form_user_nudge'; } + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_user_nudge'; + } + + /** * Action of the form * @@ -102,4 +115,4 @@ class NudgeForm extends Form { $this->out->submit('submit', _('Send a nudge')); } -}
\ No newline at end of file +} |