template: myconfig_ -> MYCONFIG.
[kivitendo-erp.git] / templates / webpages / io / select_item.html
index 566b1a1..a212163 100644 (file)
@@ -5,7 +5,7 @@
 
   <table width="100%">
    <tr class="listheading">
-    [%- IF myconfig_item_multiselect %]
+    [%- IF MYCONFIG.item_multiselect %]
       <th>[% LxERP.t8('Qty') %]</th>
     [%- ELSE %]
       <th>&nbsp;</th>
@@ -26,7 +26,7 @@
 
    [%- FOREACH item = ITEM_LIST %]
    <tr class="listrow[% loop.count % 2 %]">
-    [%- IF myconfig_item_multiselect %]
+    [%- IF MYCONFIG.item_multiselect %]
       <td>[% L.input_tag('select_qty_' _ HTML.escape(item.id), '', size => 5) %]</td>
     [%- ELSE %]
       <td><input name="select_item_id" class="radio" type="radio" value="[% HTML.escape(item.id) %]"[% IF loop.first %] checked[% END %]></td>
@@ -57,7 +57,7 @@
   [% L.submit_tag('action', LxERP.t8('Continue')) %]
  </form>
 
-[%- IF myconfig_item_multiselect %]
+[%- IF MYCONFIG.item_multiselect %]
  <script type='text/javascript'>
    var first_click = 1;;
    [%- FOREACH item = ITEM_LIST %]