aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-13 15:33:57 -0800
committerfriendica <info@friendica.com>2013-01-13 15:33:57 -0800
commit83ca9dfc2396cdb3134bc8f7b6a02c80f7c5b537 (patch)
tree05c1620430a2b2ae0437f59fb2c08e5425445102
parent5ea70892ed2d265d27723dd32a4b898f4ad769c2 (diff)
parent068dc6ebd218bf68670051f483b583da304a6bd2 (diff)
downloadvolse-hubzilla-83ca9dfc2396cdb3134bc8f7b6a02c80f7c5b537.tar.gz
volse-hubzilla-83ca9dfc2396cdb3134bc8f7b6a02c80f7c5b537.tar.bz2
volse-hubzilla-83ca9dfc2396cdb3134bc8f7b6a02c80f7c5b537.zip
Merge https://github.com/friendica/red into zpull
-rw-r--r--boot.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/boot.php b/boot.php
index eb9d71f98..7af9248ad 100644
--- a/boot.php
+++ b/boot.php
@@ -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'];
}