X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FBookmark%2Fbookmarkform.php;h=20101e1effbd3e15ba68f5e9f37eacfcca272423;hb=c97048d01bea468e0cf8865b60c3c250b4515c39;hp=5f355cdb2f117fc335e0edcc5410a5426ee6694c;hpb=007d1be06ddbd805521202af4d833f74100934b1;p=quix0rs-gnu-social.git diff --git a/plugins/Bookmark/bookmarkform.php b/plugins/Bookmark/bookmarkform.php index 5f355cdb2f..20101e1eff 100644 --- a/plugins/Bookmark/bookmarkform.php +++ b/plugins/Bookmark/bookmarkform.php @@ -120,15 +120,18 @@ class BookmarkForm extends Form // TRANS: Field label on form for adding a new bookmark. _m('LABEL','URL'), $this->_url, + null, '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)); } @@ -138,6 +141,7 @@ class BookmarkForm extends Form // TRANS: Field label on form for adding a new bookmark. _m('LABEL','Title'), $this->_title, + null, 'title'); $this->unli(); @@ -146,6 +150,7 @@ class BookmarkForm extends Form // TRANS: Field label on form for adding a new bookmark. _m('LABEL','Notes'), $this->_description, + null, 'description'); $this->unli(); @@ -178,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)