aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--lib/dokuwiki.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index c98e1af28..40e1f52ec 100644
--- a/README
+++ b/README
@@ -16,7 +16,7 @@ NOTES:
LICENSE:
-----------------------
-- elgg plugin uses GPLv2. dokuwiki and mods (all under lib/dokuwiki) go with original license to original copyright holders.
+- elgg plugin uses GPLv2. dokuwiki and mods (all under vendors/dokuwiki) go with original license to original copyright holders.
REPO:
-----------------------
diff --git a/lib/dokuwiki.php b/lib/dokuwiki.php
index 7ae95000d..9881c0e55 100644
--- a/lib/dokuwiki.php
+++ b/lib/dokuwiki.php
@@ -54,7 +54,7 @@ function dokuwiki_create_datafolder($path) {
if (is_dir($path)) // if it exists must be already created
return;
mkdir($path, 0700, true);
- $orig = elgg_get_plugins_path().'dokuwiki/lib/dokuwiki/data';
+ $orig = elgg_get_plugins_path().'dokuwiki/vendors/dokuwiki/data';
dokuwiki_recurse_copy($orig, $path);
}