]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Give bookmark form elements unique ids
authorZach Copley <zach@status.net>
Sun, 17 Apr 2011 22:09:56 +0000 (15:09 -0700)
committerZach Copley <zach@status.net>
Sun, 17 Apr 2011 22:09:56 +0000 (15:09 -0700)
plugins/Bookmark/bookmarkform.php
plugins/Bookmark/bookmarkforurl.php
plugins/Bookmark/initialbookmarkform.php
plugins/Bookmark/newbookmark.php

index f6341a0a7223771d67d3ab6019570b555efb1d9a..5f355cdb2f117fc335e0edcc5410a5426ee6694c 100644 (file)
@@ -116,10 +116,11 @@ class BookmarkForm extends Form
         $this->out->elementStart('ul', 'form_data');
 
         $this->li();
-        $this->out->input('url',
+        $this->out->input('bookmark-url',
                           // TRANS: Field label on form for adding a new bookmark.
                           _m('LABEL','URL'),
-                          $this->_url);
+                          $this->_url,
+                          'url');
         $this->unli();
 
         list($width, $height) = $this->scaleImage($this->_thumbnail->width,
@@ -133,26 +134,29 @@ class BookmarkForm extends Form
         }
 
         $this->li();
-        $this->out->input('title',
+        $this->out->input('bookmark-title',
                           // TRANS: Field label on form for adding a new bookmark.
                           _m('LABEL','Title'),
-                          $this->_title);
+                          $this->_title,
+                          'title');
         $this->unli();
 
         $this->li();
-        $this->out->textarea('description',
+        $this->out->textarea('bookmark-description',
                              // TRANS: Field label on form for adding a new bookmark.
                              _m('LABEL','Notes'),
-                             $this->_description);
+                             $this->_description,
+                             'description');
         $this->unli();
 
         $this->li();
-        $this->out->input('tags',
+        $this->out->input('bookmark-tags',
                           // TRANS: Field label on form for adding a new bookmark.
                           _m('LABEL','Tags'),
                           $this->_tags,
                           // TRANS: Field title on form for adding a new bookmark.
-                          _m('Comma- or space-separated list of tags.'));
+                          _m('Comma- or space-separated list of tags.'),
+                          'tags');
         $this->unli();
 
         $this->out->elementEnd('ul');
index cff6408191f84f53e5311092a946acd8fbe5c4da..0c7a94b93731cbacc1e723ccaa2fb464c5de25c8 100644 (file)
@@ -68,7 +68,7 @@ class BookmarkforurlAction extends Action
 
         $this->checkSessionToken();
 
-        $this->url = $this->trimmed('url');
+        $this->url = $this->trimmed('initial-bookmark-url');
 
         if (empty($this->url)) {
             throw new ClientException(_('URL is required.'), 400);
index f747e05075a086aa1fc6fb44e1062e6d38a94259..c49bd67432a0faf8af2a9b11382822356d6af8dc 100644 (file)
@@ -73,10 +73,9 @@ class InitialBookmarkForm extends Form
         $this->out->elementStart('ul', 'form_data');
 
         $this->li();
-        $this->out->input('url',
+        $this->out->input('initial-bookmark-url',
                           // TRANS: Field label on form for adding a new bookmark.
-                          _m('LABEL','URL'),
-                          null);
+                          _m('LABEL','URL'));
         $this->unli();
 
         $this->out->elementEnd('ul');
index 92e9bc81c59a3ee77106f7a1383fb11969e378f9..8c60fc159681b9da422343aacc71e166956d62fd 100644 (file)
@@ -87,10 +87,10 @@ class NewbookmarkAction extends Action
             $this->checkSessionToken();
         }
 
-        $this->title       = $this->trimmed('title');
-        $this->url         = $this->trimmed('url');
-        $this->tags        = $this->trimmed('tags');
-        $this->description = $this->trimmed('description');
+        $this->title       = $this->trimmed('bookmark-title');
+        $this->url         = $this->trimmed('bookmark-url');
+        $this->tags        = $this->trimmed('bookmark-tags');
+        $this->description = $this->trimmed('bookmark-description');
 
         return true;
     }