diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-14 02:26:42 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-14 02:26:42 -0500 |
commit | 353f64f47f07116151f500f37738f11d8c376c33 (patch) | |
tree | 3d375a472e388e4d6ebc87021233705f7c62cfcd /lib | |
parent | 21d87778ae76fd73eded304d213bdeb47b5052ee (diff) |
Fix comments on profile
Incorrectly said this was for nudging, not subbing/unsubbing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/subscribeform.php | 4 | ||||
-rw-r--r-- | lib/unsubscribeform.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/subscribeform.php b/lib/subscribeform.php index fccc3d301..996729a28 100644 --- a/lib/subscribeform.php +++ b/lib/subscribeform.php @@ -50,7 +50,7 @@ require_once INSTALLDIR.'/lib/form.php'; class SubscribeForm extends Form { /** - * Profile of user to nudge + * Profile of user to subscribe to */ var $profile = null; @@ -59,7 +59,7 @@ class SubscribeForm extends Form * Constructor * * @param HTMLOutputter $out output channel - * @param Profile $profile profile of user to nudge + * @param Profile $profile profile of user to subscribe to */ function __construct($out=null, $profile=null) diff --git a/lib/unsubscribeform.php b/lib/unsubscribeform.php index 1d4c08a71..a724bb312 100644 --- a/lib/unsubscribeform.php +++ b/lib/unsubscribeform.php @@ -50,7 +50,7 @@ require_once INSTALLDIR.'/lib/form.php'; class UnsubscribeForm extends Form { /** - * Profile of user to nudge + * Profile of user to unsubscribe from */ var $profile = null; @@ -59,7 +59,7 @@ class UnsubscribeForm extends Form * Constructor * * @param HTMLOutputter $out output channel - * @param Profile $profile profile of user to nudge + * @param Profile $profile profile of user to unsub from */ function __construct($out=null, $profile=null) |