mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-25 14:50:11 +01: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:
@@ -17248,3 +17248,8 @@
|
|||||||
correctly.
|
correctly.
|
||||||
* Modified the 'editcut.html' test harness to process UTF-8 strings
|
* Modified the 'editcut.html' test harness to process UTF-8 strings
|
||||||
correctly.
|
correctly.
|
||||||
|
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.
|
||||||
|
|||||||
@@ -334,6 +334,9 @@ void Xport::EditCart()
|
|||||||
cart->setYear(number);
|
cart->setYear(number);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(xport_post->getValue("SONG_ID",&value)) {
|
||||||
|
cart->setSongId(value);
|
||||||
|
}
|
||||||
if(xport_post->getValue("LABEL",&value)) {
|
if(xport_post->getValue("LABEL",&value)) {
|
||||||
cart->setLabel(value);
|
cart->setLabel(value);
|
||||||
}
|
}
|
||||||
@@ -349,6 +352,9 @@ void Xport::EditCart()
|
|||||||
if(xport_post->getValue("COMPOSER",&value)) {
|
if(xport_post->getValue("COMPOSER",&value)) {
|
||||||
cart->setComposer(value);
|
cart->setComposer(value);
|
||||||
}
|
}
|
||||||
|
if(xport_post->getValue("CONDUCTOR",&value)) {
|
||||||
|
cart->setConductor(value);
|
||||||
|
}
|
||||||
if(xport_post->getValue("USER_DEFINED",&value)) {
|
if(xport_post->getValue("USER_DEFINED",&value)) {
|
||||||
cart->setUserDefined(value);
|
cart->setUserDefined(value);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user