summaryrefslogtreecommitdiff
path: root/lib/plugins/importoldchangelog
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2008-08-15 15:42:11 +0200
committerAnika Henke <anika@selfthinker.org>2008-08-15 15:42:11 +0200
commitf46c9e83ac3d4e9350bdc37645a5e337c24b1cac (patch)
tree77a20cd95054fca1d4b35501d455d19b72b3bd72 /lib/plugins/importoldchangelog
parent66549c4a6fc8f954aafe84dff529fea593a39b57 (diff)
downloadrpg-f46c9e83ac3d4e9350bdc37645a5e337c24b1cac.tar.gz
rpg-f46c9e83ac3d4e9350bdc37645a5e337c24b1cac.tar.bz2
fixed all remaining links to wiki.splitbrain.org and to restructured pages
darcs-hash:20080815134211-f7d6d-61f4f4fa1c5f62832d7cc5ad3e3a7a78460d2981.gz
Diffstat (limited to 'lib/plugins/importoldchangelog')
-rw-r--r--lib/plugins/importoldchangelog/action.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/plugins/importoldchangelog/action.php b/lib/plugins/importoldchangelog/action.php
index 29cea06c1..dcb3a9f84 100644
--- a/lib/plugins/importoldchangelog/action.php
+++ b/lib/plugins/importoldchangelog/action.php
@@ -7,23 +7,23 @@ require_once(DOKU_PLUGIN.'action.php');
class action_plugin_importoldchangelog extends DokuWiki_Action_Plugin {
- function getInfo(){
- return array(
- 'author' => 'Ben Coburn',
- 'email' => 'btcoburn@silicodon.net',
- 'date' => '2006-10-29',
- 'name' => 'Import Old Changelog',
- 'desc' => 'Imports and converts the single file changelog '.
+ function getInfo(){
+ return array(
+ 'author' => 'Ben Coburn',
+ 'email' => 'btcoburn@silicodon.net',
+ 'date' => '2006-10-29',
+ 'name' => 'Import Old Changelog',
+ 'desc' => 'Imports and converts the single file changelog '.
'from the 2006-03-09 release to the new format. '.
'Also reconstructs missing changelog data from '.
'old revisions kept in the attic.',
- 'url' => 'http://wiki.splitbrain.org/wiki:changelog'
- );
- }
+ 'url' => 'http://dokuwiki.org/plugin:importoldchangelog'
+ );
+ }
- function register(&$controller) {
+ function register(&$controller) {
$controller->register_hook('TEMPORARY_CHANGELOG_UPGRADE_EVENT', 'BEFORE', $this, 'run_import');
- }
+ }
function importOldLog($line, &$logs) {
global $lang;