mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 00:53:53 +02:00
2018-07-30 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'EditCart' web API call that caused updates to the 'SongID' field to be ignored. * Fixed a bug in the 'EditCart' web API call that caused updates to the 'Conductor' field to be ignored.
This commit is contained in:
@@ -334,6 +334,9 @@ void Xport::EditCart()
|
||||
cart->setYear(number);
|
||||
}
|
||||
}
|
||||
if(xport_post->getValue("SONG_ID",&value)) {
|
||||
cart->setSongId(value);
|
||||
}
|
||||
if(xport_post->getValue("LABEL",&value)) {
|
||||
cart->setLabel(value);
|
||||
}
|
||||
@@ -349,6 +352,9 @@ void Xport::EditCart()
|
||||
if(xport_post->getValue("COMPOSER",&value)) {
|
||||
cart->setComposer(value);
|
||||
}
|
||||
if(xport_post->getValue("CONDUCTOR",&value)) {
|
||||
cart->setConductor(value);
|
||||
}
|
||||
if(xport_post->getValue("USER_DEFINED",&value)) {
|
||||
cart->setUserDefined(value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user