aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Hunter <justin.d.hunter@gmail.com>2010-10-29 10:05:24 -0700
committerJustin Hunter <justin.d.hunter@gmail.com>2010-10-29 10:05:24 -0700
commitb52bfa73714cda66b6d22e0a5a116c17cd7c1805 (patch)
tree882d9afe4e462001e3fe8c229b1f0ce5f570b943
parentab20681f17b8d9b6aab611a1ff1174b74425f495 (diff)
downloadreaction-b52bfa73714cda66b6d22e0a5a116c17cd7c1805.tar.gz
reaction-b52bfa73714cda66b6d22e0a5a116c17cd7c1805.zip
fix for lack of remote_user
-rw-r--r--lib/ComponentUI/Controller/Root.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ComponentUI/Controller/Root.pm b/lib/ComponentUI/Controller/Root.pm
index 4d9f1eb..1239ea8 100644
--- a/lib/ComponentUI/Controller/Root.pm
+++ b/lib/ComponentUI/Controller/Root.pm
@@ -43,7 +43,7 @@ sub root :Chained('base') :PathPart('') :Args(0) {
},
),
);
- $c->log->debug('remote', $c->request->remote_user );
+ $c->log->debug('remote', $c->request->remote_user || '' );
}
sub bye :Chained('base') :PathPart('bye') :Args(0) {