From edca654ef0e3f2003de587c13f2402a9518972dd Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 09 Dec 2013 02:55:25 -0500
Subject: [PATCH] Fix quota image broken in e71ceb0c98b33409af5978f0f33c6c95148bd86b (#1489467)

---
 program/include/rcmail_output_json.php |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/program/include/rcmail_output_json.php b/program/include/rcmail_output_json.php
index 22edce9..d0e1eec 100644
--- a/program/include/rcmail_output_json.php
+++ b/program/include/rcmail_output_json.php
@@ -2,7 +2,7 @@
 
 /*
  +-----------------------------------------------------------------------+
- | program/include/rc,ai�_output_json.php                                |
+ | program/include/rcmail_output_json.php                                |
  |                                                                       |
  | This file is part of the Roundcube Webmail client                     |
  | Copyright (C) 2008-2012, The Roundcube Dev Team                       |
@@ -227,6 +227,13 @@
         if (!empty($this->callbacks))
             $response['callbacks'] = $this->callbacks;
 
+        // trigger generic hook where plugins can put additional content to the response
+        $hook = $this->app->plugins->exec_hook("render_response", array('response' => $response));
+
+        // save some memory
+        $response = $hook['response'];
+        unset($hook['response']);
+
         echo self::json_serialize($response);
     }
 

--
Gitblit v1.9.1