From 173d78c48000fa8d05b95f57c42176eb1bbb2b5e Mon Sep 17 00:00:00 2001 From: Andreas Gohr <andi@splitbrain.org> Date: Fri, 6 Mar 2009 19:57:17 +0100 Subject: [PATCH] check if $auth is set in editorinfo() FS#1636 darcs-hash:20090306185717-7ad00-64bc35049667483988dcc3f5b8128f8a5f7f8fe7.gz --- inc/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/common.php b/inc/common.php index 46d0002df..fd54b7faf 100644 --- a/inc/common.php +++ b/inc/common.php @@ -1376,7 +1376,7 @@ function editorinfo($username){ case 'username': case 'email': case 'email_link': - $info = $auth->getUserData($username); + if($auth) $info = $auth->getUserData($username); break; default: return hsc($username); -- GitLab