|
@@ -1822,11 +1822,10 @@ const char* CWsSMCEx::createQueueActionInfo(IEspContext &context, const char* st
|
|
|
CDateTime now;
|
|
|
now.setNow();
|
|
|
now.getString(currentTime);
|
|
|
+ info.appendf("%s by <%s> at <%s> from <%s>", state, userId, currentTime.str(), peer.str());
|
|
|
const char* comment = req.getComment();
|
|
|
if (comment && *comment)
|
|
|
- info.appendf("'%s' (commented by <%s> at <%s> from <%s>)", comment, userId, currentTime.str(), peer.str());
|
|
|
- else
|
|
|
- info.appendf("%s by <%s> at <%s> from <%s>", state, userId, currentTime.str(), peer.str());
|
|
|
+ info.append(": ' ").append(comment).append("'");
|
|
|
return info.str();
|
|
|
}
|
|
|
|