i saw this on my friend nick’s feed. if you’re like me, you’ve probably been incredibly depressed at some point in your life. this comic was a pretty good explanation of how i sometimes feel.
Yep
i saw this on my friend nick’s feed. if you’re like me, you’ve probably been incredibly depressed at some point in your life. this comic was a pretty good explanation of how i sometimes feel.
Yep
There’s a post here about getting it to work, but it’s old. Since then, the include statements for HTML Purifier were moved to their own file. In a normal script you would include the HTMLPurifier.includes.php file, but this isn’t in line with how CodeIgniter loads libraries, so it requires some hacking to get working.
require 'HTMLPurifier.php'; to //require 'HTMLPurifier.php';require_once('HTMLPurifier.includes.php');And that’s all! Load with
$this->load->library('HTMLPurifier');