Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2017-09-29 13:34:45 +0300
committerAleksander Machniak <alec@alec.pl>2017-09-29 13:34:45 +0300
commit2754a621f3a6e5cfc141a6c33f21441e0fe0f8dd (patch)
tree87c994655d2b0a9f86e3e92a9bef8169644762f9 /plugins/emoticons
parent509ef13a272c30dfafcb01754ad2111bf63e5c68 (diff)
Elastic skin support for hide_blockquote plugin
Diffstat (limited to 'plugins/emoticons')
-rw-r--r--plugins/emoticons/emoticons.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/emoticons/emoticons.php b/plugins/emoticons/emoticons.php
index 5bc6f8c10..4eefed873 100644
--- a/plugins/emoticons/emoticons.php
+++ b/plugins/emoticons/emoticons.php
@@ -145,7 +145,7 @@ class emoticons extends rcube_plugin
$checkbox = new html_checkbox(array('name' => '_' . $field_id, 'id' => $field_id, 'value' => 1));
$args['blocks']['main']['options']['emoticons_display'] = array(
- 'title' => $this->gettext('emoticonsdisplay'),
+ 'title' => html::label($field_id, $this->gettext('emoticonsdisplay')),
'content' => $checkbox->show(intval($rcube->config->get('emoticons_display', false)))
);
}
@@ -157,7 +157,7 @@ class emoticons extends rcube_plugin
$checkbox = new html_checkbox(array('name' => '_' . $field_id, 'id' => $field_id, 'value' => 1));
$args['blocks']['main']['options']['emoticons_compose'] = array(
- 'title' => $this->gettext('emoticonscompose'),
+ 'title' => html::label($field_id, $this->gettext('emoticonscompose')),
'content' => $checkbox->show(intval($rcube->config->get('emoticons_compose', true)))
);
}