christianklisch / slim-minify

PHP slim framework middleware to minify HTML output
MIT License
37 stars 9 forks source link

Fix error "variable body is not defined" #2

Closed bbarreto closed 8 years ago

bbarreto commented 9 years ago

While doing preg_replace, the variable $body was missing because it was named $squeezedHTML. Now it is renamed to $body and getting "undefined variable" error anymore.

christianklisch commented 8 years ago

Thanks for fixing