diff options
author | Jerome Bakker <jeabakker@coldtrick.com> | 2012-10-03 14:02:11 +0200 |
---|---|---|
committer | Jerome Bakker <jeabakker@coldtrick.com> | 2012-10-03 14:02:11 +0200 |
commit | 949a3f0c2ea1804577ff69d92f811ced71a79976 (patch) | |
tree | 0817ea4d6a936fb3a6493c6ff34a06b6d3e691c7 /mod/thewire | |
parent | 766fe8ebbcc600982dddce4d93b15b65a7b8c1fb (diff) | |
download | elgg-949a3f0c2ea1804577ff69d92f811ced71a79976.tar.gz elgg-949a3f0c2ea1804577ff69d92f811ced71a79976.tar.bz2 |
correct singual usage of type in elgg_get_entities_* functions
Diffstat (limited to 'mod/thewire')
-rw-r--r-- | mod/thewire/views/default/thewire/profile_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php index b5d9dbd80..ef0d550d2 100644 --- a/mod/thewire/views/default/thewire/profile_status.php +++ b/mod/thewire/views/default/thewire/profile_status.php @@ -9,7 +9,7 @@ $owner = $vars['entity']->guid; //grab the user's latest from the wire $params = array( - 'types' => 'object', + 'type' => 'object', 'subtypes' => 'thewire', 'owner_guid' => $owner, 'limit' => 1, |