View | Details | Raw Unified | Return to bug 130707
Collapse All | Expand All

(-)dialogs.ycp (-2 / +4 lines)
Lines 620-626 Link Here
620
620
621
	list items = [];
621
	list items = [];
622
	foreach (string cl, clients, {
622
	foreach (string cl, clients, {
623
	    any summary = WFM::CallFunction (cl, ["Summary", $["what" : what]]);
623
	    any summary = WFM::CallFunction (cl, ["Summary", $[
624
		"what" : "user", "type" : user_type ]]);
624
	    string pl	= client2plugin[cl]:cl;
625
	    string pl	= client2plugin[cl]:cl;
625
	    if (is (summary, string))
626
	    if (is (summary, string))
626
		items = add (items, `item(`id(cl),
627
		items = add (items, `item(`id(cl),
Lines 1657-1663 Link Here
1657
1658
1658
	list items = [];
1659
	list items = [];
1659
	foreach (string cl, clients, {
1660
	foreach (string cl, clients, {
1660
	    any summary = WFM::CallFunction (cl, ["Summary", $["what" : what]]);
1661
	    any summary = WFM::CallFunction (cl, ["Summary", $[
1662
		"what" : "group", "type" : group_type ]]);
1661
	    string pl	= client2plugin[cl]:cl;
1663
	    string pl	= client2plugin[cl]:cl;
1662
	    if (is (summary, string))
1664
	    if (is (summary, string))
1663
		items = add (items, `item(`id(cl),
1665
		items = add (items, `item(`id(cl),

Return to bug 130707