diff options
-rw-r--r-- | engine/lib/plugins.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 447be32af..8b3d24070 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -31,6 +31,9 @@ if (is_dir($CONFIG->pluginspath . $mod . "/views/default")) {
autoregister_views("",$CONFIG->pluginspath . $mod . "/views/default",$CONFIG->pluginspath . $mod . "/views/");
}
+ if (is_dir($CONFIG->pluginspath . $mod . "/languages")) {
+ register_translations($CONFIG->pluginspath . $mod . "/languages");
+ }
}
}
}
|