From 46f7b7096450939fe03c95aa81ce06ae4bfca89d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Mon, 28 Mar 2016 06:51:43 -0400 Subject: [PATCH] Enable reply/reply-all/forward buttons also in preview frame of message/rfc822 --- program/include/rcmail_output.php | 19 ++++++------------- 1 files changed, 6 insertions(+), 13 deletions(-) diff --git a/program/include/rcmail_output.php b/program/include/rcmail_output.php index 36512ad..b5fd785 100644 --- a/program/include/rcmail_output.php +++ b/program/include/rcmail_output.php @@ -1,6 +1,6 @@ <?php -/* +/** +-----------------------------------------------------------------------+ | program/include/rcmail_output.php | | | @@ -22,18 +22,19 @@ /** * Class for output generation * - * @package Core + * @package Webmail * @subpackage View */ abstract class rcmail_output extends rcube_output { const JS_OBJECT_NAME = 'rcmail'; + const BLANK_GIF = 'R0lGODlhDwAPAIAAAMDAwAAAACH5BAEAAAAALAAAAAAPAA8AQAINhI+py+0Po5y02otnAQA7'; - public $type = 'html'; + public $type = 'html'; public $ajax_call = false; - public $framed = false; + public $framed = false; - protected $pagetitle = ''; + protected $pagetitle = ''; protected $object_handlers = array(); @@ -45,7 +46,6 @@ parent::__construct(); } - /** * Setter for page title * @@ -56,7 +56,6 @@ $this->pagetitle = $title; } - /** * Getter for the current skin path property */ @@ -64,7 +63,6 @@ { return $this->config->get('skin_path'); } - /** * Delete all stored env variables and commands @@ -77,7 +75,6 @@ $this->pagetitle = ''; } - /** * Call a client method * @@ -86,12 +83,10 @@ */ abstract function command(); - /** * Add a localized label to the client environment */ abstract function add_label(); - /** * Register a template object handler @@ -105,7 +100,6 @@ $this->object_handlers[$obj] = $func; } - /** * Register a list of template object handlers * @@ -116,5 +110,4 @@ { $this->object_handlers = array_merge($this->object_handlers, $arr); } - } -- Gitblit v1.9.1