Skip to content

Commit

Permalink
by subhojit777: filter text field name attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
subhojit777 committed Sep 21, 2016
1 parent 0beb834 commit 41013af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theme/listjs.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
?>
<div id="<?php print $list_id; ?>">
<div class="filter-wrapper">
<?php print theme('textfield', array('element' => array('#attributes' => array('class' => array('search'), 'placeholder' => $placeholder_text, 'name' => 'sugary'), '#autocomplete_path' => FALSE))); ?>
<?php print theme('textfield', array('element' => array('#attributes' => array('class' => array('search'), 'placeholder' => $placeholder_text, 'name' => $list_id . '-filter'), '#autocomplete_path' => FALSE))); ?>
</div>
<div class="sort-wrapper">
<?php foreach ($value_names as $value_name => $conf): ?>
Expand Down

0 comments on commit 41013af

Please sign in to comment.