diff options
-rw-r--r-- | engine/lib/elgglib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 218e2cb07..ae5ef951a 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -111,7 +111,7 @@ if (!@include($location . "{$viewtype}/{$view}.php")) {
$success = false;
if ($viewtype != "default") {
- if (@include($location . "views/default/{$view}.php")) {
+ if (@include($location . "default/{$view}.php")) {
$success = true;
}
}
|