From ee211e5fca3c2bdd0eec988626b2c40c4df159f1 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Sat, 14 Oct 2017 20:04:45 -0400 Subject: [PATCH] 2017-10-14 Fred Gleason * Fixed a bug in RDStation that caused matrix parameters to fail to be copied as part of the profile of a new host. --- lib/rdstation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/rdstation.cpp b/lib/rdstation.cpp index 309cd7a4..939592de 100644 --- a/lib/rdstation.cpp +++ b/lib/rdstation.cpp @@ -1530,9 +1530,9 @@ bool RDStation::create(const QString &name,QString *err_msg, // Clone Host Variables // sql=QString("select ")+ - "NAME,"+ - "VARVALUE,"+ - "REMARK "+ + "NAME,"+ // 00 + "VARVALUE,"+ // 01 + "REMARK "+ // 02 "from HOSTVARS where "+ "STATION_NAME=\""+RDEscapeString(exemplar)+"\""; q=new RDSqlQuery(sql);