]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
typo in form functions
authorEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 17:51:05 +0000 (13:51 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 17:51:05 +0000 (13:51 -0400)
darcs-hash:20080520175105-84dde-0f08b19d42ed6b5484ef763c3f6c819ae0156d6f.gz

doc/TODO
lib/util.php

index 338a298ddeed818d540fa5111d4823286d86b502..b8bb2f708d913e9fee8e99ad4745b49fa68d6585 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -37,6 +37,7 @@
 + save profile URL in profilesettings
 + save profile URL on registration
 - require valid nicknames
+- reject empty notices
 - store canonical username for comparison and fetch
 - use only canonical usernames
 - use only canonical email addresses
index 83fbb4a5b0fb19bc558e7b270b393b0cf1f076ea..fb89d1ca2a6ece03881962907b21f6eae861a01f 100644 (file)
@@ -203,7 +203,7 @@ function common_input($id, $label, $value=NULL) {
                $attrs['value'] = htmlspecialchars($value);
        }
        common_element('input', $attrs);
-       comon_element_end('p');
+       common_element_end('p');
 }
 
 function common_password($id, $label) {
@@ -213,7 +213,7 @@ function common_password($id, $label) {
                                   'type' => 'password',
                                   'id' => $id);
        common_element('input', $attrs);
-       comon_element_end('p');
+       common_element_end('p');
 }
 
 function common_submit($id, $label) {
@@ -222,7 +222,7 @@ function common_submit($id, $label) {
                                                                  'id' => $id,
                                                                  'name' => $id,
                                                                  'value' => $label));
-       comon_element_end('p');
+       common_element_end('p');
 }
 
 # salted, hashed passwords are stored in the DB