diff options
Diffstat (limited to 'mod/profile/icon.php')
-rw-r--r-- | mod/profile/icon.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 2848c3e4d..a624c0811 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -35,9 +35,8 @@ if ($filehandler->open("read")) { } if (!$success) { - global $CONFIG; - $path = elgg_view('icon/user/default/'.$size); - header("Location: {$path}"); + $path = elgg_view("icon/user/default/$size"); + header("Location: $path"); exit; } |