blob: a72d6ea959f8ab33262e3dbbfccfe19733bc7f1c (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | <?php
	global $CONFIG;
	/// Deprecate kses and activate htmlawed
	/**
	 * Kses appears to be a dead project so we are deprecating it in favour of htmlawed.
	 */
	disable_plugin('kses', $CONFIG->site->guid);
	enable_plugin('htmlawed', $CONFIG->site->guid);
 |