mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-10 09:01:17 +02:00
2021-04-19 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression that threw a SQL error when opening the 'Edit Group' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
6264ec3235
commit
0f4891d4e4
@ -21461,3 +21461,6 @@
|
||||
* Escaped all SQL identifiers in 'rdadmin/'.
|
||||
* Replaced " with ' delimiters in all SQL literal strings in
|
||||
'rdadmin/'.
|
||||
2021-04-19 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression that threw a SQL error when opening the
|
||||
'Edit Group' dialog in rdadmin(1).
|
||||
|
@ -47,7 +47,7 @@ RDGroup::RDGroup(QString name,bool create)
|
||||
//
|
||||
// Normalize case
|
||||
//
|
||||
sql=QString("select `NAME` from `GROUPS`` where ")+
|
||||
sql=QString("select `NAME` from `GROUPS` where ")+
|
||||
"`NAME`='"+RDEscapeString(name)+"'";
|
||||
q=new RDSqlQuery(sql);
|
||||
if(q->first()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user