You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When Slide.php in the table function is processing the index of the row of the table, it has a regex expression that has de digit part wrong, it should include the digits (pair) not one single digit, otherwise it will repeat the index above 10 and will repeat the data.
To Reproduce
Steps to reproduce the behavior:
Have an array with 10 or more elements to process into the table (with differents numeric index). Use table, boom, it will repeat those above 10.
The text was updated successfully, but these errors were encountered:
Describe the bug
When Slide.php in the table function is processing the index of the row of the table, it has a regex expression that has de digit part wrong, it should include the digits (pair) not one single digit, otherwise it will repeat the index above 10 and will repeat the data.
Actual code:
'/<([^>]+:?' . self::TABLE_ROW_TEMPLATE_NAME . '([\d])+\/>?)/'
Solution:
'/<([^>]+:?' . self::TABLE_ROW_TEMPLATE_NAME . '([\d]+)\/>?)/'
To Reproduce
Steps to reproduce the behavior:
Have an array with 10 or more elements to process into the table (with differents numeric index). Use table, boom, it will repeat those above 10.
The text was updated successfully, but these errors were encountered: