mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-02 17:09:28 +02:00
2021-04-19 Fred Gleason <fredg@paravelsystems.com>
* Escaped all SQL identifiers in 'rdcastmanager/'. * Replaced " with ' delimiters in all SQL literal strings in 'rdcastmanager/'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
c53d4c9858
commit
d7f395561e
@ -21491,3 +21491,7 @@
|
|||||||
* Escaped all SQL identifiers in 'rdcartslots/'.
|
* Escaped all SQL identifiers in 'rdcartslots/'.
|
||||||
* Replaced " with ' delimiters in all SQL literal strings in
|
* Replaced " with ' delimiters in all SQL literal strings in
|
||||||
'rdcartslots/'.
|
'rdcartslots/'.
|
||||||
|
2021-04-19 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Escaped all SQL identifiers in 'rdcastmanager/'.
|
||||||
|
* Replaced " with ' delimiters in all SQL literal strings in
|
||||||
|
'rdcastmanager/'.
|
||||||
|
@ -349,14 +349,14 @@ void ListCasts::deleteData()
|
|||||||
}
|
}
|
||||||
pd->setValue(1);
|
pd->setValue(1);
|
||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
sql=QString("delete from PODCASTS where ")+
|
sql=QString("delete from `PODCASTS` where ")+
|
||||||
QString().sprintf("ID=%u",cast_id);
|
QString().sprintf("`ID`=%u",cast_id);
|
||||||
RDSqlQuery::apply(sql);
|
RDSqlQuery::apply(sql);
|
||||||
|
|
||||||
sql=QString("update FEEDS set ")+
|
sql=QString("update `FEEDS` set ")+
|
||||||
"LAST_BUILD_DATETIME=now() "+
|
"LAST_BUILD_DATETIME=now() "+
|
||||||
"where "+
|
"where "+
|
||||||
QString().sprintf("ID=%u",list_feed_id);
|
QString().sprintf("`ID`=%u",list_feed_id);
|
||||||
RDSqlQuery::apply(sql);
|
RDSqlQuery::apply(sql);
|
||||||
|
|
||||||
if(!list_feed->postXml()) {
|
if(!list_feed->postXml()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user