diff options
author | friendica <info@friendica.com> | 2013-12-19 19:16:46 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-19 19:16:46 -0800 |
commit | bccc20f38c3919d453b0dee1ed354aa4eb13b398 (patch) | |
tree | 0e9fa8e0de4e4e6807223ac176a55ad8e3bce77e /include | |
parent | 648a7a5735148479fc8d97bfaa1f3d3cca249276 (diff) | |
download | volse-hubzilla-bccc20f38c3919d453b0dee1ed354aa4eb13b398.tar.gz volse-hubzilla-bccc20f38c3919d453b0dee1ed354aa4eb13b398.tar.bz2 volse-hubzilla-bccc20f38c3919d453b0dee1ed354aa4eb13b398.zip |
default photo issue, and connections page showing deleted accounts. Also show last updated on connedit page
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php index 4d38b2828..80f02a9c5 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1124,7 +1124,7 @@ function get_default_profile_photo($size = 175) { $scheme = get_config('system','default_profile_photo'); if(! $scheme) $scheme = 'rainbow_man'; - return 'images/default_profile_photos/' . $scheme . '/' . $size . 'jpg'; + return 'images/default_profile_photos/' . $scheme . '/' . $size . '.jpg'; } |