diff options
author | Evan Prodromou <evan@status.net> | 2009-11-10 16:27:23 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-10 16:27:23 -0500 |
commit | 1f5f5474f175a8248b362f8be4ff23bb5e971305 (patch) | |
tree | c38d9b80db71ba403c61079502bc12bfe2732654 /classes/User.php | |
parent | 348b155376eac2130150cd041bca9fd4799334cf (diff) | |
parent | 651cbf0681b6d263dde673ce36811710bfe553b8 (diff) |
Merge branch '0.9.x' into adminpanel
Diffstat (limited to 'classes/User.php')
-rw-r--r-- | classes/User.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/User.php b/classes/User.php index 7267ec2d7..447a34141 100644 --- a/classes/User.php +++ b/classes/User.php @@ -87,7 +87,7 @@ class User extends Memcached_DataObject return (is_null($sub)) ? false : true; } - // 'update' will not write key columns, so we have to do it ourselves. + // 'update' won't write key columns, so we have to do it ourselves. function updateKeys(&$orig) { @@ -384,7 +384,7 @@ class User extends Memcached_DataObject return false; } - // Otherwise, cache does not have all faves; + // Otherwise, cache doesn't have all faves; // fall through to the default } @@ -463,7 +463,7 @@ class User extends Memcached_DataObject { $cache = common_memcache(); if ($cache) { - // Faves do not happen chronologically, so we need to blow + // Faves don't happen chronologically, so we need to blow // ;last cache, too $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); |