diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-10 17:06:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-10 17:06:31 +0000 |
commit | bd24f7225f0ffc61cb78ed55ad2f16782d56a557 (patch) | |
tree | 42b66be148d27e2a4ebc823c86671399476a46c2 /mod | |
parent | f2420d68c38b63cee268ca0ca914320fc58b1bac (diff) | |
download | elgg-bd24f7225f0ffc61cb78ed55ad2f16782d56a557.tar.gz elgg-bd24f7225f0ffc61cb78ed55ad2f16782d56a557.tar.bz2 |
The Wire incoming SMS now uses the default access level.
git-svn-id: https://code.elgg.org/elgg/trunk@3206 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/thewire/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/start.php b/mod/thewire/start.php index 4bfc3e675..da0e2f409 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -196,7 +196,7 @@ if ((is_plugin_enabled('smsclient')) && (is_plugin_enabled('smslogin')))
{
// By this stage the owner should be logged in (requires SMS Login)
- if (thewire_save_post($object->description, 2, 0, 'sms'))
+ if (thewire_save_post($object->description, get_default_access(), 0, 'sms'))
return false;
}
|