diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-06-22 07:26:49 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-06-22 07:26:49 +0200 |
commit | 513447a4150f7cf46d8773e9fa9b2106c0a21de5 (patch) | |
tree | 05270e52e0a7ea25f26314bc66e8738b48f82782 /addon | |
parent | a51fc14e69c626aa683db4d5e45a7ff6106752a7 (diff) | |
download | volse-hubzilla-513447a4150f7cf46d8773e9fa9b2106c0a21de5.tar.gz volse-hubzilla-513447a4150f7cf46d8773e9fa9b2106c0a21de5.tar.bz2 volse-hubzilla-513447a4150f7cf46d8773e9fa9b2106c0a21de5.zip |
typo fix for the variable names
Diffstat (limited to 'addon')
-rw-r--r-- | addon/statusnet/statusnet.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/addon/statusnet/statusnet.php b/addon/statusnet/statusnet.php index cb0f87764..85024631c 100644 --- a/addon/statusnet/statusnet.php +++ b/addon/statusnet/statusnet.php @@ -367,8 +367,8 @@ function statusnet_plugin_admin_post(&$a){ $sites[] = Array( 'sitename' => $sitename, 'apiurl' => $apiurl, - 'secret' => $secret, - 'key' => $key + 'consumersecret' => $secret, + 'consumerkey' => $key ); } } @@ -386,8 +386,8 @@ function statusnet_plugin_admin(&$a, &$o){ $sitesform[] = Array( 'sitename' => Array("sitename[$id]", "Site name", $s['sitename'], ""), 'apiurl' => Array("apiurl[$id]", "Api url", $s['apiurl'], ""), - 'secret' => Array("secret[$id]", "Secret", $s['secret'], ""), - 'key' => Array("key[$id]", "Key", $s['key'], ""), + 'secret' => Array("secret[$id]", "Secret", $s['consumersecret'], ""), + 'key' => Array("key[$id]", "Key", $s['consumerkey'], ""), 'delete' => Array("delete[$id]", "Delete", False , "Check to delete this preset"), ); } |