mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 23:18:59 +02:00
Merge branch 'tryphon-xport-addcart-create-group'
Fixed incorrect passing of 'this' to RDGroup constructor.
This commit is contained in:
commit
8e2a6c5e1d
@ -14489,3 +14489,6 @@
|
|||||||
2014-09-20 Alban Peignier <alban@tryphon.eu>
|
2014-09-20 Alban Peignier <alban@tryphon.eu>
|
||||||
* Merged patch from albanpeignier to use global cue assignments
|
* Merged patch from albanpeignier to use global cue assignments
|
||||||
for RDCueEdit, Audition Hea/Tail in RDAirPlay [GitHub issue #000024].
|
for RDCueEdit, Audition Hea/Tail in RDAirPlay [GitHub issue #000024].
|
||||||
|
2014-09-19 Alban Peignier <alban@tryphon.eu>
|
||||||
|
* Fixed 'web/rdxport/carts.cpp' which tried to create associated group
|
||||||
|
during cart creation
|
||||||
|
@ -73,7 +73,7 @@ void Xport::AddCart()
|
|||||||
if(!xport_user->groupAuthorized(group_name)) {
|
if(!xport_user->groupAuthorized(group_name)) {
|
||||||
XmlExit("No such group",404);
|
XmlExit("No such group",404);
|
||||||
}
|
}
|
||||||
group=new RDGroup(group_name,this);
|
group=new RDGroup(group_name);
|
||||||
if(cart_number==0) {
|
if(cart_number==0) {
|
||||||
if((cart_number=group->nextFreeCart())==0) {
|
if((cart_number=group->nextFreeCart())==0) {
|
||||||
delete group;
|
delete group;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user