diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:34:29 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:34:29 +0100 |
commit | 9b1a49806150f028ad2b33e96dd60ea33f7a86f3 (patch) | |
tree | bfe0c2d396e417944a6e8c181e5af32751fd76f8 /boot.php | |
parent | 69e41f7703bff03dc88e7181961a717ae41330c4 (diff) | |
download | volse-hubzilla-9b1a49806150f028ad2b33e96dd60ea33f7a86f3.tar.gz volse-hubzilla-9b1a49806150f028ad2b33e96dd60ea33f7a86f3.tar.bz2 volse-hubzilla-9b1a49806150f028ad2b33e96dd60ea33f7a86f3.zip |
allow hidden fields in login form
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -651,7 +651,7 @@ function get_guid($size=16) { // returns the complete html for inserting into the page if(! function_exists('login')) { -function login($register = false) { +function login($register = false, $hiddens=false) { $o = ""; $reg = false; if ($register) { @@ -682,6 +682,7 @@ function login($register = false) { '$openid' => !$noid, '$lopenid' => array('openid_url', t('OpenID: '),'',''), + '$hiddens' => $hiddens, '$register' => $reg, |