remove calls to ptln() in order to remove deprecation warnings#367
remove calls to ptln() in order to remove deprecation warnings#367ChaosKid42 wants to merge 1 commit intodokufreaks:masterfrom
Conversation
michitux
left a comment
There was a problem hiding this comment.
In PHP, echo is a statement and not a function. The manual explicitly advices against this function-like syntax even though it is valid when using just a single argument. Also, I think while you paid attention to keep the spaces intact, this removes all line breaks in the output. I didn't check if this has any effect, but I believe either both spaces and line breaks should be preserved, or none of them. I don't see the point in keeping spaces for indentation without line breaks between the lines.
3bcf745 to
17836ba
Compare
17836ba to
4c84b61
Compare
794ba2e to
33cc143
Compare
@michitux You are right. I tried another approach. |
33cc143 to
aaeb121
Compare
This PR remove calls to
ptln()which cause deprecation warnings.