diff options
| -rw-r--r-- | mod/groups/icon.php | 10 | ||||
| -rw-r--r-- | mod/profile/icondirect.php | 9 | 
2 files changed, 18 insertions, 1 deletions
| diff --git a/mod/groups/icon.php b/mod/groups/icon.php index f4c0f8010..104da4b41 100644 --- a/mod/groups/icon.php +++ b/mod/groups/icon.php @@ -10,8 +10,15 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");  $group_guid = get_input('group_guid');  $group = get_entity($group_guid); +// If is the same ETag, content didn't changed. +$etag = $group->icontime . $group_guid; +if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) { +	header("HTTP/1.1 304 Not Modified"); +	exit; +} +  $size = strtolower(get_input('size')); -if (!in_array($size,array('large','medium','small','tiny','master','topbar'))) +if (!in_array($size, array('large', 'medium', 'small', 'tiny', 'master', 'topbar')))  	$size = "medium";  $success = false; @@ -37,4 +44,5 @@ header('Expires: ' . date('r',time() + 864000));  header("Pragma: public");  header("Cache-Control: public");  header("Content-Length: " . strlen($contents)); +header("ETag: $etag");  echo $contents; diff --git a/mod/profile/icondirect.php b/mod/profile/icondirect.php index f7188455e..6c3148f2b 100644 --- a/mod/profile/icondirect.php +++ b/mod/profile/icondirect.php @@ -12,8 +12,16 @@ require_once(dirname(dirname(dirname(__FILE__))). '/engine/settings.php');  global $CONFIG;  $join_date = (int)$_GET['joindate']; +$last_cache = (int)$_GET['lastcache']; // icontime  $guid = (int)$_GET['guid']; +// If is the same ETag, content didn't changed. +$etag = $last_cache . $guid; +if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) { +	header("HTTP/1.1 304 Not Modified"); +	exit; +} +  $size = strtolower($_GET['size']);  if (!in_array($size, array('large', 'medium', 'small', 'tiny', 'master', 'topbar'))) {  	$size = "medium"; @@ -48,6 +56,7 @@ if ($mysql_dblink) {  				header("Pragma: public");  				header("Cache-Control: public");  				header("Content-Length: " . strlen($contents)); +				header("ETag: $etag");  				// this chunking is done for supposedly better performance  				$split_string = str_split($contents, 1024);  				foreach ($split_string as $chunk) { | 
