diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-08-21 07:48:14 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-21 07:48:14 -0400 |
commit | 4d3e2daf536c32d46fffb4defac7cbe89bdf3a1c (patch) | |
tree | 3bf672414c298b4c21ae2536e10ea7e785fa41b6 /classes | |
parent | d2d3418b8ae6986c14e8eda25779d621443e9e0a (diff) |
check correct setting in Profile bio length
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index ff233666a..8f92b386e 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -463,7 +463,7 @@ class Profile extends Memcached_DataObject static function maxBio() { - $biolimit = common_config('message', 'biolimit'); + $biolimit = common_config('profile', 'biolimit'); // null => use global limit (distinct from 0!) if (is_null($biolimit)) { $biolimit = common_config('site', 'textlimit'); |