diff options
author | Evan Prodromou <evan@status.net> | 2010-01-06 23:22:49 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-06 23:22:49 -0800 |
commit | e1c7851a067d4d8201126816884b9992720010f5 (patch) | |
tree | 8a1e16518383c6aa65854fb01e45f1483f82ef78 /plugins | |
parent | e50410683fa29dd424f893dd302d835828e0711f (diff) |
pass through keys() as keyTypes() for UserFlag
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/UserFlag/User_flag_profile.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/UserFlag/User_flag_profile.php b/plugins/UserFlag/User_flag_profile.php index 658259452..6bf47071b 100644 --- a/plugins/UserFlag/User_flag_profile.php +++ b/plugins/UserFlag/User_flag_profile.php @@ -90,6 +90,17 @@ class User_flag_profile extends Memcached_DataObject } /** + * return key definitions for DB_DataObject + * + * @return array key definitions + */ + + function keyTypes() + { + return $this->keys(); + } + + /** * Get a single object with multiple keys * * @param array $kv Map of key-value pairs |