Skip to content

v3.0.1

Latest
Compare
Choose a tag to compare
@rayanlevert rayanlevert released this 04 Apr 05:05

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