From 39b905b7a8abafe57f5429952db390a97ffa047f Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 20 Jun 2013 09:08:10 -0400
Subject: [PATCH] Canonize boolean ini_get() results (#1489189)
---
plugins/help/help.php | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/plugins/help/help.php b/plugins/help/help.php
index 1a76cbb..69da682 100644
--- a/plugins/help/help.php
+++ b/plugins/help/help.php
@@ -21,8 +21,6 @@
function init()
{
- $rcmail = rcmail::get_instance();
-
$this->add_texts('localization/', false);
// register task
@@ -90,8 +88,7 @@
$attrib['name'] = $attrib['id'];
- return html::tag('iframe', $attrib, '', array(
- 'id', 'class', 'style', 'src', 'width', 'height', 'frameborder'));
+ return $rcmail->output->frame($attrib);
}
}
--
Gitblit v1.9.1