From 070b8e9f7144d3f517c68356eacdf3e96484be06 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Wed, 17 Oct 2012 04:36:45 -0400
Subject: [PATCH] Fix the fix for empty text parts handling (#1488757)
---
program/include/rcube_session.php | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/program/include/rcube_session.php b/program/include/rcube_session.php
index 6916e2b..e00401f 100644
--- a/program/include/rcube_session.php
+++ b/program/include/rcube_session.php
@@ -315,7 +315,8 @@
public function mc_destroy($key)
{
if ($key) {
- $this->memcache->delete($key);
+ // #1488592: use 2nd argument
+ $this->memcache->delete($key, 0);
}
return true;
--
Gitblit v1.9.1