aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/actions.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-10 11:40:38 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-10 11:40:38 +0000
commit2e54eedc16240ddab2efec91e38de73f97e59710 (patch)
tree0fe82c618ad03297f8c9c92366a7e3139b12b4dd /engine/lib/actions.php
parentae0d8fe986218116baba7fe0e20b26789bbe5e24 (diff)
downloadelgg-2e54eedc16240ddab2efec91e38de73f97e59710.tar.gz
elgg-2e54eedc16240ddab2efec91e38de73f97e59710.tar.bz2
Messages and actions: fixed!
git-svn-id: https://code.elgg.org/elgg/trunk@130 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/actions.php')
-rw-r--r--engine/lib/actions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/actions.php b/engine/lib/actions.php
index 035d26cf5..bc5d6374f 100644
--- a/engine/lib/actions.php
+++ b/engine/lib/actions.php
@@ -35,7 +35,7 @@
if (isset($CONFIG->actions[$action])) {
if ($CONFIG->actions[$action]['public'] || $_SESSION['id'] != -1) {
- if (@include($CONFIG->actions[$action]['file'])) {
+ if (@include($CONFIG->path . $CONFIG->actions[$action]['file'])) {
} else {
register_error("The requested action was not defined in the system.");
}