2021-06-10 Fred Gleason <fredg@paravelsystems.com>

* Fixed a typo in 'RDClock::load()' that threw a SQL error.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-06-10 15:39:54 -04:00
parent 32a1efbeac
commit feb435e7d9
2 changed files with 3 additions and 1 deletions

View File

@ -21874,3 +21874,5 @@
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
* Refactored the 'Set Password' dialog so as to pass the password
value in the 'RDPasswd::exec()' method.
2021-06-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a typo in 'RDClock::load()' that threw a SQL error.

View File

@ -138,7 +138,7 @@ bool RDClock::load()
"`ARTISTSEP`,"+ // 02
"`REMARKS` "+ // 03
"from `CLOCKS` where "+
"`NAME`='"+RDEscapeString(clock_name)+"i";
"`NAME`='"+RDEscapeString(clock_name)+"'";
RDSqlQuery *q=new RDSqlQuery(sql);
if(!q->first()) {
delete q;