diff --git a/ChangeLog b/ChangeLog index e94163f3..abfe9701 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15577,3 +15577,6 @@ * Fixed a bug in 'lib/rdlog_line.cpp' that caused the event start time to be incorrect in the 'ListLog' Web API method for times of '00:00:00.0' for 'hard' type. +2017-02-10 Fred Gleason + * Added a '' field to the output of the 'ListLog' web + API method. diff --git a/lib/rdlog_line.cpp b/lib/rdlog_line.cpp index 0a3f3a2d..78fbfbb9 100644 --- a/lib/rdlog_line.cpp +++ b/lib/rdlog_line.cpp @@ -1955,6 +1955,7 @@ QString RDLogLine::xml(int line) const } ret+=" "+RDXmlField("client",client()); ret+=" "+RDXmlField("agency",agency()); + ret+=" "+RDXmlField("conductor",conductor()); ret+=" "+RDXmlField("userDefined",userDefined()); ret+=" "+RDXmlField("usageCode",usageCode()); ret+=" "+RDXmlField("enforceLength",enforceLength());