blob: 3bf89e9b7d89d09a8f21210ffe05e63bc92ec939 (
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);
|