From 677d011fc64fb3e9657327d82d57fc6ddd94e7fd Mon Sep 17 00:00:00 2001
From: R.D. Vaughan <r.d.vaughan@rogers.com>
Date: Fri, 24 Aug 2012 17:24:14 -0400
Subject: [PATCH] Log:
Removed erroneuos string "MythDate::" which caused malformed
XML in the Service API Status/GetStatus output
---
mythtv/programs/mythbackend/httpstatus.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/mythtv/programs/mythbackend/httpstatus.cpp b/mythtv/programs/mythbackend/httpstatus.cpp
index 4fbe2df..684104a 100644
|
a
|
b
|
void HttpStatus::FillStatusXML( QDomDocument *pDoc )
|
| 191 | 191 | qdtNow, MythDate::kDateFull | MythDate::kAddYear)); |
| 192 | 192 | root.setAttribute("time" , |
| 193 | 193 | MythDate::toString(qdtNow, MythDate::kTime)); |
| 194 | | root.setAttribute("MythDate::ISODate" , qdtNow.toString(Qt::ISODate) ); |
| | 194 | root.setAttribute("ISODate" , qdtNow.toString(Qt::ISODate) ); |
| 195 | 195 | root.setAttribute("version" , MYTH_BINARY_VERSION ); |
| 196 | 196 | root.setAttribute("protoVer", MYTH_PROTO_VERSION ); |
| 197 | 197 | |