diff options
author | friendica <info@friendica.com> | 2014-01-20 03:40:00 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-20 03:40:00 -0800 |
commit | f563ea4b39df459df25a590a7f7a5bb2afcd5cc1 (patch) | |
tree | 98a8c1c7a8277ae8da0a4507783caa082fe6a85a /include | |
parent | e68748afabee36a0c60fdf071cdc7c458080f13b (diff) | |
parent | a13593590b5e5488554225ba9ff9bced24cffd0c (diff) | |
download | volse-hubzilla-f563ea4b39df459df25a590a7f7a5bb2afcd5cc1.tar.gz volse-hubzilla-f563ea4b39df459df25a590a7f7a5bb2afcd5cc1.tar.bz2 volse-hubzilla-f563ea4b39df459df25a590a7f7a5bb2afcd5cc1.zip |
Merge pull request #275 from MicMee/master
added buttons to perform later hubloc actions
Diffstat (limited to 'include')
-rw-r--r-- | include/security.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/security.php b/include/security.php index a87442d42..9943cf88d 100644 --- a/include/security.php +++ b/include/security.php @@ -339,7 +339,7 @@ function get_form_security_token($typename = '') { $timestamp = time(); $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename); - + return $timestamp . '.' . $sec_hash; } |