From 1591f8110ddd63f671fd119f7f0b591d188597d2 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Mon, 23 Mar 2009 20:06:16 +0000 Subject: [PATCH] Followup on r48713: fix a very stupid typo --- includes/api/ApiFormatWddx.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiFormatWddx.php b/includes/api/ApiFormatWddx.php index ac9a53c3a6..35bd7f4967 100644 --- a/includes/api/ApiFormatWddx.php +++ b/includes/api/ApiFormatWddx.php @@ -48,7 +48,7 @@ class ApiFormatWddx extends ApiFormatBase { $expected = "
\xc2\xa0"; if (function_exists('wddx_serialize_value') && !$this->getIsHtml() - && wddx_serialize_value("\xc2\xa0") != $expected) { + && wddx_serialize_value("\xc2\xa0") == $expected) { $this->printText(wddx_serialize_value($this->getResultData())); } else { // Don't do newlines and indentation if we weren't asked -- 2.20.1