diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-09 12:34:38 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-09 12:34:38 +0000 |
commit | 94d316ea1f20fbca680641cc846c9ead979e7017 (patch) | |
tree | 45e8732539de7af518bb5ad761f8c191677dbfd7 /engine/lib/upgrades/2009070101.php | |
parent | c906e91726bbf53105234af073ce8d806cc9030f (diff) | |
download | elgg-94d316ea1f20fbca680641cc846c9ead979e7017.tar.gz elgg-94d316ea1f20fbca680641cc846c9ead979e7017.tar.bz2 |
Refs #3241 cleaned up comments on upgrades and removed the turning off of time limit in individual upgrades since this is now handled by the upgrade function
git-svn-id: http://code.elgg.org/elgg/trunk@8961 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/upgrades/2009070101.php')
-rw-r--r-- | engine/lib/upgrades/2009070101.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/engine/lib/upgrades/2009070101.php b/engine/lib/upgrades/2009070101.php index a72d6ea95..d0eae9b91 100644 --- a/engine/lib/upgrades/2009070101.php +++ b/engine/lib/upgrades/2009070101.php @@ -1,10 +1,9 @@ <?php - global $CONFIG; +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); +/** + * 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); |