summaryrefslogtreecommitdiff
path: root/plugins/help/help.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-07-05 10:40:32 +0200
committerAleksander Machniak <alec@alec.pl>2013-07-05 10:40:32 +0200
commiteabc0564cd09a5ce77c00777e34cc1bfc7ee56d4 (patch)
tree683a734c3fe7439e0f6c16c69e575538fb8e7630 /plugins/help/help.php
parent86d13b73b85cb8da15e3f15632b8fcdb7e245b5a (diff)
Help plugin: CSS fixes, content frame scrollbar fix, about page (classic skin) fix
Diffstat (limited to 'plugins/help/help.php')
-rw-r--r--plugins/help/help.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php
index 66c4256a0..ab665d0a8 100644
--- a/plugins/help/help.php
+++ b/plugins/help/help.php
@@ -82,7 +82,8 @@ class help extends rcube_plugin
if (is_readable($this->home . '/content/about.html')) {
return @file_get_contents($this->home . '/content/about.html');
}
- $src = $rcmail->config->get('help_about_url', $rcmail->url(array('_task' => 'settings', '_action' => 'about')));
+ $default = $rcmail->url(array('_task' => 'settings', '_action' => 'about', '_framed' => 1));
+ $src = $rcmail->config->get('help_about_url', $default);
break;
case 'license':