summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/load.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/load.php b/inc/load.php
index 8df68d1b3..ddd12b546 100644
--- a/inc/load.php
+++ b/inc/load.php
@@ -101,7 +101,7 @@ function load_autoload($name){
$c = ((count($m) === 4) ? "/{$m[3]}" : '');
$plg = DOKU_PLUGIN . "{$m[2]}/{$m[1]}$c.php";
if(@file_exists($plg)){
- include DOKU_PLUGIN . "{$m[2]}/{$m[1]}$c.php";
+ include_once DOKU_PLUGIN . "{$m[2]}/{$m[1]}$c.php";
}
return;
}