diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-18 10:26:45 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-18 10:26:45 +0000 |
commit | c0144b57ce21b4c4be3d0c70358863e534ec5ab5 (patch) | |
tree | fa6b7d620eb652612b8fc86b0ebf3c086d9d546a | |
parent | 2ed14fb7d2a6f92b3003e04165470c89dc2e778a (diff) | |
download | elgg-c0144b57ce21b4c4be3d0c70358863e534ec5ab5.tar.gz elgg-c0144b57ce21b4c4be3d0c70358863e534ec5ab5.tar.bz2 |
Action debug
git-svn-id: https://code.elgg.org/elgg/trunk@482 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/actions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/lib/actions.php b/engine/lib/actions.php index 58f38fd7a..a0e5d33ca 100644 --- a/engine/lib/actions.php +++ b/engine/lib/actions.php @@ -35,6 +35,7 @@ if (isset($CONFIG->actions[$action])) {
if ($CONFIG->actions[$action]['public'] || $_SESSION['id'] != -1) {
+ system_message("DEBUG ACTION ({$action}): " . $CONFIG->actions[$action]['file']);
if (@include($CONFIG->actions[$action]['file'])) {
} else {
register_error(sprintf(elgg_echo('actionundefined'),$action));
|