Skip to content

Commit

Permalink
Merge pull request #4269 from ExpressionEngine/bug/7.x/perpage-id-not…
Browse files Browse the repository at this point in the history
…-unique

Resolved #4249 where ID of perpage dropdown was not unique
  • Loading branch information
bryannielsen committed May 21, 2024
2 parents fac33a1 + da422d8 commit 774d4eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<input
type="text"
name="<?=$name?>"
id="<?=$name?>"
id="<?=$name . uniqid()?>"
value="<?=htmlentities($custom_value, ENT_QUOTES, 'UTF-8')?>"
placeholder="<?=htmlentities($placeholder, ENT_QUOTES, 'UTF-8')?>"
data-threshold="<?=$threshold?>"
Expand Down

0 comments on commit 774d4eb

Please sign in to comment.