aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-23 18:27:23 -0700
committerfriendica <info@friendica.com>2013-09-23 18:27:23 -0700
commit15ce90e69c9c50610116ea9a0abfe86ae7e92174 (patch)
tree50c7026b9999188fd4782967f57541531073d4d1 /mod
parenta2b20bd58f0b1c466235a96c41846aba613ea31b (diff)
downloadvolse-hubzilla-15ce90e69c9c50610116ea9a0abfe86ae7e92174.tar.gz
volse-hubzilla-15ce90e69c9c50610116ea9a0abfe86ae7e92174.tar.bz2
volse-hubzilla-15ce90e69c9c50610116ea9a0abfe86ae7e92174.zip
oauth settings - clarify text
Diffstat (limited to 'mod')
-rw-r--r--mod/settings.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 9c60c0ec2..cc8fd2564 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -154,10 +154,17 @@ function settings_post(&$a) {
$secret = ((x($_POST,'secret')) ? $_POST['secret'] : '');
$redirect = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
$icon = ((x($_POST,'icon')) ? $_POST['icon'] : '');
- if ($name=="" || $key=="" || $secret==""){
- notice(t("Missing some important data!"));
-
- } else {
+ $ok = true;
+ if($name == '') {
+ $ok = false;
+ notice( t('Name is required') . EOL);
+ }
+ if($key == '' || $secret == '') {
+ $ok = false;
+ notice( t('Key and Secret are required') . EOL);
+ }
+
+ if($ok) {
if ($_POST['submit']==t("Update")){
$r = q("UPDATE clients SET
client_id='%s',
@@ -628,8 +635,8 @@ function settings_content(&$a) {
'$submit' => t('Submit'),
'$cancel' => t('Cancel'),
'$name' => array('name', t('Name'), '', t('Name of application')),
- '$key' => array('key', t('Consumer Key'), random_string(16), t('Automatically generated - change if desired')),
- '$secret' => array('secret', t('Consumer Secret'), random_string(16), t('Automatically generated - change if desired')),
+ '$key' => array('key', t('Consumer Key'), random_string(16), t('Automatically generated - change if desired. Max length 20')),
+ '$secret' => array('secret', t('Consumer Secret'), random_string(16), t('Automatically generated - change if desired. Max length 20')),
'$redirect' => array('redirect', t('Redirect'), '', t('Redirect URI - leave blank unless your application specifically requires this')),
'$icon' => array('icon', t('Icon url'), '', t('Optional')),
));