diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 11:50:52 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 11:50:52 +0000 |
commit | 395fe163c4658dda3b101508b070e30cc6fb6dc1 (patch) | |
tree | 8ed259469ddb0ab05d42afa85dc14c4f6c4fae52 /engine/lib/elgglib.php | |
parent | dd624054a469d9e8ceb91cc2ee3f63a393f016db (diff) | |
download | elgg-395fe163c4658dda3b101508b070e30cc6fb6dc1.tar.gz elgg-395fe163c4658dda3b101508b070e30cc6fb6dc1.tar.bz2 |
Correction to previous
git-svn-id: https://code.elgg.org/elgg/trunk@38 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-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;
}
}
|