Simplify random_string() calls

This commit is contained in:
Hypolite Petovan 2017-11-25 21:31:10 -05:00
parent dc15e9a080
commit 7f900007c7
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ function ifttt_settings(App $a, &$s)
$key = PConfig::get(local_user(), 'ifttt', 'key'); $key = PConfig::get(local_user(), 'ifttt', 'key');
if (!$key) { if (!$key) {
$key = substr(random_string(),0,20); $key = random_string(20);
PConfig::set(local_user(), 'ifttt', 'key', $key); PConfig::set(local_user(), 'ifttt', 'key', $key);
} }

View File

@ -94,7 +94,7 @@ function xmpp_plugin_settings(App $a, &$s)
function xmpp_login() function xmpp_login()
{ {
if (!$_SESSION["allow_api"]) { if (!$_SESSION["allow_api"]) {
$password = substr(random_string(),0,16); $password = random_string(16);
PConfig::set(local_user(), "xmpp", "password", $password); PConfig::set(local_user(), "xmpp", "password", $password);
} }
} }