aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/icondirect.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-07-04 13:07:14 -0400
committerCash Costello <cash.costello@gmail.com>2012-07-04 13:07:14 -0400
commit663deabe7225163336f772494c2c606d4d5d8af3 (patch)
tree0bcc9c67ab5096203cb14e1c79574962519a6d57 /mod/profile/icondirect.php
parentd021adfebbb7a0deee8beb7d1d38b9b7f18f0a3f (diff)
downloadelgg-663deabe7225163336f772494c2c606d4d5d8af3.tar.gz
elgg-663deabe7225163336f772494c2c606d4d5d8af3.tar.bz2
user avatar direct serves 404 if no identifiying information sent
Diffstat (limited to 'mod/profile/icondirect.php')
-rw-r--r--mod/profile/icondirect.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/profile/icondirect.php b/mod/profile/icondirect.php
index 6c3148f2b..c4439f78c 100644
--- a/mod/profile/icondirect.php
+++ b/mod/profile/icondirect.php
@@ -11,6 +11,12 @@ require_once(dirname(dirname(dirname(__FILE__))). '/engine/settings.php');
global $CONFIG;
+// won't be able to serve anything if no joindate or guid
+if (!isset($_GET['joindate']) || !isset($_GET['guid'])) {
+ header("HTTP/1.1 404 Not Found");
+ exit;
+}
+
$join_date = (int)$_GET['joindate'];
$last_cache = (int)$_GET['lastcache']; // icontime
$guid = (int)$_GET['guid'];