diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-01-25 15:30:50 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-01-25 15:30:50 +0100 |
commit | cd3c835dbeb780145f9ea9830a3385893f62d613 (patch) | |
tree | 93d4f618fbaa32283e20737c5300e1bdf9b55b1c /lib/exe/indexer.php | |
parent | b5676fcfd98983fbf5a24ab62d55800347367c98 (diff) | |
download | rpg-cd3c835dbeb780145f9ea9830a3385893f62d613.tar.gz rpg-cd3c835dbeb780145f9ea9830a3385893f62d613.tar.bz2 |
removed importoldchangelog and importoldindex plugins
Ignore-this: fb48b24cecb52541a728ba9c17597d8f
These one-shot plugins where used for upgrading older DokuWiki versions
and are no longer needed.
If you upgrade from a really old version you might want upgrade to
intermediate versions instead.
darcs-hash:20090125143050-7ad00-5ff7b2cd5f61c392e9e02e13eab947d045d60b04.gz
Diffstat (limited to 'lib/exe/indexer.php')
-rw-r--r-- | lib/exe/indexer.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/exe/indexer.php b/lib/exe/indexer.php index 6380f8f9d..b114d4b3b 100644 --- a/lib/exe/indexer.php +++ b/lib/exe/indexer.php @@ -61,17 +61,6 @@ exit; function runTrimRecentChanges($media_changes = false) { global $conf; - // Import old changelog (if needed) - // Uses the imporoldchangelog plugin to upgrade the changelog automaticaly. - // FIXME: Remove this from runTrimRecentChanges when it is no longer needed. - if (!$media_changes && isset($conf['changelog_old']) && - @file_exists($conf['changelog_old']) && !@file_exists($conf['changelog']) && - !@file_exists($conf['changelog'].'_importing') && !@file_exists($conf['changelog'].'_tmp')) { - $tmp = array(); // no event data - trigger_event('TEMPORARY_CHANGELOG_UPGRADE_EVENT', $tmp); - return true; - } - $fn = ($media_changes ? $conf['media_changelog'] : $conf['changelog']); // Trim the Recent Changes |