Skip to content

v2.2.1

Choose a tag to compare

@rayanlevert rayanlevert released this 04 Apr 05:18
· 4 commits to 2.0 since this release
78dd2ab

I've added functionality to properly handle percentage signs in the ProgressBar class's property title.

This enhancement ensures that when a title contains percentage signs, they are correctly escaped to prevent issues with the sprintf function.

Modified

  • #26 : Modified the advance() method in ProgressBar.php:
    • Added code to escape percentage signs in the title before using it in sprintf
      • Used str_replace('%', '%%', $this->title) to double all percentage signs