From 20aee83d07b67b484ca447b004d91ae188b2ec07 Mon Sep 17 00:00:00 2001
From: Thomas Tanghus <thomas@tanghus.net>
Date: Tue, 5 Jun 2012 21:19:46 +0200
Subject: [PATCH] Use UID for cache key.

---
 apps/contacts/ajax/currentphoto.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/contacts/ajax/currentphoto.php b/apps/contacts/ajax/currentphoto.php
index e4d69eeb87..5f90128f32 100644
--- a/apps/contacts/ajax/currentphoto.php
+++ b/apps/contacts/ajax/currentphoto.php
@@ -44,7 +44,7 @@ if( is_null($contact)) {
 		$image->loadFromBase64($contact->getAsString('LOGO'));
 	}
 	if($image->valid()) {
-		$tmpkey = 'contact-photo-'.md5($contact->getAsString('FN'));
+		$tmpkey = 'contact-photo-'.$contact->getAsString('UID');
 		if(OC_Cache::set($tmpkey, $image->data(), 600)) {
 			OCP\JSON::success(array('data' => array('id'=>$_GET['id'], 'tmp'=>$tmpkey)));
 			exit();
-- 
GitLab