From a9587489473baf3854999e711083be212ca0c1c4 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sun, 07 Jun 2015 09:26:33 -0400 Subject: [PATCH] CS fixes --- program/include/rcmail_output.php | 16 ++++------------ 1 files changed, 4 insertions(+), 12 deletions(-) diff --git a/program/include/rcmail_output.php b/program/include/rcmail_output.php index 76ff4e7..b5fd785 100644 --- a/program/include/rcmail_output.php +++ b/program/include/rcmail_output.php @@ -1,6 +1,6 @@ <?php -/* +/** +-----------------------------------------------------------------------+ | program/include/rcmail_output.php | | | @@ -30,11 +30,11 @@ 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(); @@ -46,7 +46,6 @@ parent::__construct(); } - /** * Setter for page title * @@ -57,7 +56,6 @@ $this->pagetitle = $title; } - /** * Getter for the current skin path property */ @@ -65,7 +63,6 @@ { return $this->config->get('skin_path'); } - /** * Delete all stored env variables and commands @@ -78,7 +75,6 @@ $this->pagetitle = ''; } - /** * Call a client method * @@ -87,12 +83,10 @@ */ abstract function command(); - /** * Add a localized label to the client environment */ abstract function add_label(); - /** * Register a template object handler @@ -106,7 +100,6 @@ $this->object_handlers[$obj] = $func; } - /** * Register a list of template object handlers * @@ -117,5 +110,4 @@ { $this->object_handlers = array_merge($this->object_handlers, $arr); } - } -- Gitblit v1.9.1