Commit 4412b0a27cfe8b521c6b6e83e7e3d4daf60c75e2

Authored by totoro
1 parent 47af25c2

forgot to rename few function from mf_format_form_field to cxm_format_form_field

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
web/CXM_form_field.anubis
@@ -434,7 +434,7 @@ public define CXM_Form_Field @@ -434,7 +434,7 @@ public define CXM_Form_Field
434 // ////////////////////////////////////////////////////////// 434 // //////////////////////////////////////////////////////////
435 435
436 public define HTML_In_Form 436 public define HTML_In_Form
437 - mf_format_form_field 437 + cxm_format_form_field
438 ( 438 (
439 CXM_Form_Field ff 439 CXM_Form_Field ff
440 ) = 440 ) =
@@ -547,7 +547,7 @@ public define HTML_In_Form @@ -547,7 +547,7 @@ public define HTML_In_Form
547 ]), 547 ]),
548 one_line_fields(fields) then 548 one_line_fields(fields) then
549 table([nude],[row([], 549 table([nude],[row([],
550 - map((CXM_Form_Field ff2) |-> cell([],mf_format_form_field(ff2)),fields))]) 550 + map((CXM_Form_Field ff2) |-> cell([],cxm_format_form_field(ff2)),fields))])
551 , 551 ,
552 552
553 553
@@ -566,7 +566,7 @@ public define HTML_In_Form @@ -566,7 +566,7 @@ public define HTML_In_Form
566 partial(p_content) then partial(p_content), 566 partial(p_content) then partial(p_content),
567 input_with_help(input, help_title, help_text, width) then 567 input_with_help(input, help_title, help_text, width) then
568 sequence([ 568 sequence([
569 - mf_format_form_field(input), 569 + cxm_format_form_field(input),
570 html_tooltip(force_String(help_title), help_text, width), 570 html_tooltip(force_String(help_title), help_text, width),
571 ]), 571 ]),
572 572
@@ -603,7 +603,7 @@ public define HTML_In_Form @@ -603,7 +603,7 @@ public define HTML_In_Form
603 sequence([ 603 sequence([
604 literal("<fieldset" + format_attrs(options) + ">"), 604 literal("<fieldset" + format_attrs(options) + ">"),
605 literal(if length(legend) > 0 then "<legend>" + legend + "</legend>" else ""), 605 literal(if length(legend) > 0 then "<legend>" + legend + "</legend>" else ""),
606 - sequence( map((CXM_Form_Field ff) |-> div([class("form_field")], mf_format_form_field(ff)), fields) ), 606 + sequence( map((CXM_Form_Field ff) |-> div([class("form_field")], cxm_format_form_field(ff)), fields) ),
607 literal("</fieldset>")]). 607 literal("</fieldset>")]).
608 608
609 public define HTML_In_Form 609 public define HTML_In_Form