diff options
author | Michael Meer <michael@meer.name> | 2013-01-13 16:44:52 +0100 |
---|---|---|
committer | Michael Meer <michael@meer.name> | 2013-01-13 16:44:52 +0100 |
commit | 870af710614c7457b82f637907e755f5d9cc88fc (patch) | |
tree | 68c6cae1ebb9fbf606c8bd452c28905b38cfc37c | |
parent | de3b5955c982cb470036991ef15869705faf5595 (diff) | |
download | volse-hubzilla-870af710614c7457b82f637907e755f5d9cc88fc.tar.gz volse-hubzilla-870af710614c7457b82f637907e755f5d9cc88fc.tar.bz2 volse-hubzilla-870af710614c7457b82f637907e755f5d9cc88fc.zip |
deleted function was commented out already
-rw-r--r-- | boot.php | 24 |
1 files changed, 0 insertions, 24 deletions
@@ -814,30 +814,6 @@ if(! class_exists('App')) { return $this->curl_headers; } - /* //MicMee 20120109 function no longer in use commented out - function get_cached_avatar_image($avatar_image){ - if($this->cached_profile_image[$avatar_image]) - return $this->cached_profile_image[$avatar_image]; - - $path_parts = explode("/",$avatar_image); - $common_filename = $path_parts[count($path_parts)-1]; - - if($this->cached_profile_picdate[$common_filename]){ - $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename]; - } else { - $r = q("SELECT `contact`.`avatar_date` AS picdate FROM `contact` WHERE `contact`.`thumb` like \"%%/%s\"", - $common_filename); - if(! count($r)){ - $this->cached_profile_image[$avatar_image] = $avatar_image; - } else { - $this->cached_profile_picdate[$common_filename] = "?rev=" . urlencode($r[0]['picdate']); - $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename]; - } - } - return $this->cached_profile_image[$avatar_image]; - } - */ - function get_template_engine() { return $this->theme['template_engine']; } |