aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/upgrades/2009070101.php
blob: edd8ce4b495af61ed2bf8b1b60aa3b1239a29633 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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);
?>