diff options
author | sembrestels <sembrestels@riseup.net> | 2011-10-13 16:33:53 +0200 |
---|---|---|
committer | sembrestels <sembrestels@riseup.net> | 2011-10-13 16:33:53 +0200 |
commit | 91fe6103304b175ecde69d356cda25ec957f8a9a (patch) | |
tree | 28d17e351f57a9192c0c6e6195093fd3f1e2225f | |
parent | aea694ec095e073829030eca1503fe32049ffe42 (diff) | |
download | elgg-91fe6103304b175ecde69d356cda25ec957f8a9a.tar.gz elgg-91fe6103304b175ecde69d356cda25ec957f8a9a.tar.bz2 |
Changed two remaining paths
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | lib/dokuwiki.php | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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); } |