ezyang / htmlpurifier

Standards compliant HTML filter written in PHP
http://htmlpurifier.org
GNU Lesser General Public License v2.1
3.07k stars 327 forks source link

Correct implode() params for php74 compliance #243

Closed stronk7 closed 4 years ago

stronk7 commented 4 years ago

Passing parameters to implode() in reverse order is deprecated, use implode($glue, $parts) instead of implode($parts, $glue).

Part of https://tracker.moodle.org/browse/MDL-67115

(those seem to be the only 2 occurrences in code)