From f4b9ac77101a0cf656335446146448c6bf34940a Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 28 Nov 2018 10:41:17 -0500 Subject: [PATCH] Message: Don't include Title objects in the serialization (part 2) Stringify the title instead. This will help avoid running into the PHP/HHVM serialization incompatibility described in T210528. This is part 2: Once all servers have part 1 (and rollback is unlikely) we can stop storing the Title objects. Bug: T210528 Change-Id: If3acfeb42788bd675c3022cc1b49dccc9ac1ecbe --- includes/Message.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/Message.php b/includes/Message.php index 15d97861b1..4049e114f3 100644 --- a/includes/Message.php +++ b/includes/Message.php @@ -289,7 +289,6 @@ class Message implements MessageSpecifier, Serializable { 'parameters' => $this->parameters, 'format' => $this->format, 'useDatabase' => $this->useDatabase, - 'title' => $this->title, 'titlestr' => $this->title ? $this->title->getFullText() : null, ] ); } -- 2.20.1