diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-22 00:42:40 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-22 00:42:40 -0400 |
commit | b58a642ab0463426b9f0d1d519bc5964b1453c3e (patch) | |
tree | fc619c963a6dc97e6db578a7733a33d93897053e | |
parent | 7845f0a8a6e0a36303e0fb4c954ada9925b166a3 (diff) |
Misc. cleanup: improve comments in Login, add description to SenderIdentica
-rw-r--r-- | src/lib/Login.class.php | 2 | ||||
-rw-r--r-- | src/plugins/SenderIdentica.class.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/Login.class.php b/src/lib/Login.class.php index 14e3ecb..28675f6 100644 --- a/src/lib/Login.class.php +++ b/src/lib/Login.class.php @@ -1,6 +1,8 @@ <?php class Login { + /** Decalare an empty __construct() so that the login function doesn't + get mistaken for the costructor. */ public function __construct() {} public static function login($username, $password) { diff --git a/src/plugins/SenderIdentica.class.php b/src/plugins/SenderIdentica.class.php index 1e778f6..ea9b343 100644 --- a/src/plugins/SenderIdentica.class.php +++ b/src/plugins/SenderIdentica.class.php @@ -9,7 +9,7 @@ class SenderIdentica extends Plugin { private $obj; public static function description() { - return ''; + return 'Dent messages to Identi.ca.'; } public static function configList() { |