]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Bookmark/bookmarkform.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / Bookmark / bookmarkform.php
index 802bbe6c9c97567f9d531191931109236e01e025..20101e1effbd3e15ba68f5e9f37eacfcca272423 100644 (file)
@@ -124,12 +124,14 @@ class BookmarkForm extends Form
                           'url');
         $this->unli();
 
-        list($width, $height) = $this->scaleImage($this->_thumbnail->width,
-                                                  $this->_thumbnail->height);
-
         if (!empty($this->_thumbnail)) {
+
+            list($width, $height) = $this->scaleImage($this->_thumbnail->width,
+                                                      $this->_thumbnail->height);
+
             $this->out->element('img',
                                 array('src' => $this->_thumbnail->url,
+                                      'class' => 'bookmarkform-thumbnail',
                                       'width' => $width,
                                       'height' => $height));
         }
@@ -181,7 +183,7 @@ class BookmarkForm extends Form
     function formActions()
     {
         // TRANS: Button text for action to save a new bookmark.
-        $this->out->submit('submit', _m('BUTTON', 'Save'));
+        $this->out->submit('bookmark-submit', _m('BUTTON', 'Save'), 'submit', 'submit');
     }
 
     function scaleImage($width, $height)