diff options
author | Thomas Willingham <founder@kakste.com> | 2013-12-22 21:15:13 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-12-22 21:15:13 +0000 |
commit | 0d5c5187f9123e6ac9490408544e4816234adf17 (patch) | |
tree | 471bf284ef04d9ce8df9afdc710fa04358feda76 /include | |
parent | 2074bd0a3bf13a2d5d77f43489092a1230447213 (diff) | |
download | volse-hubzilla-0d5c5187f9123e6ac9490408544e4816234adf17.tar.gz volse-hubzilla-0d5c5187f9123e6ac9490408544e4816234adf17.tar.bz2 volse-hubzilla-0d5c5187f9123e6ac9490408544e4816234adf17.zip |
Style
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/identity.php b/include/identity.php index 568eae8c0..2226cdb19 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1112,17 +1112,17 @@ function get_theme_uid() { /** * @function get_default_profile_photo($size = 175) -* Retrieves the path of the default_profile_photo for this system -* with the specified size. +* Retrieves the path of the default_profile_photo for this system +* with the specified size. * @param int $size -* one of (175, 80, 48) +* one of (175, 80, 48) * @returns string * */ 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'; + $scheme = get_config('system','default_profile_photo'); + if(! $scheme) + $scheme = 'rainbow_man'; + return 'images/default_profile_photos/' . $scheme . '/' . $size . '.jpg'; } |