diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-11 11:26:44 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-11 11:26:44 +0000 |
commit | 7130fca5be1f317f10d5b3a96de5a0857ac10332 (patch) | |
tree | 774c3d48df1036d6ed2b4908e75050da6f67a547 | |
parent | ef9ceb15f729896bb513f73d4a69d090dd148455 (diff) | |
download | elgg-7130fca5be1f317f10d5b3a96de5a0857ac10332.tar.gz elgg-7130fca5be1f317f10d5b3a96de5a0857ac10332.tar.bz2 |
Profile user icon URL fix.
git-svn-id: https://code.elgg.org/elgg/trunk@3154 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/profile/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index e6c986c76..3dd57c450 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -266,7 +266,7 @@ if ($filehandler->exists()) { //$url = $CONFIG->url . "pg/icon/$username/$size/$icontime.jpg"; - return $CONFIG->wwwroot . 'mod/profile/icondirect.php/'.$icontime.'/?username='.$entity->username.'&size='.$size; + return $CONFIG->wwwroot . 'mod/profile/icondirect.php?lastcache='.$icontime.'&username='.$entity->username.'&size='.$size; } } } |