summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID
diff options
context:
space:
mode:
authortailor <chowells@janrain.com>2008-06-04 23:29:03 +0000
committertailor <chowells@janrain.com>2008-06-04 23:29:03 +0000
commitc3e068748dafcef65e61e85d5eadb706a808b712 (patch)
tree609d3b66bdedf78e6fadaa7cffc0ebb481d45a2f /Auth/OpenID
parentcd820101ce2ede19f8c4bbf0257d75b4f23a1965 (diff)
downloadphp-openid-c3e068748dafcef65e61e85d5eadb706a808b712.zip
php-openid-c3e068748dafcef65e61e85d5eadb706a808b712.tar.gz
php-openid-c3e068748dafcef65e61e85d5eadb706a808b712.tar.bz2
[project @ #189 Add optional form_tag_attrs arg to Auth_OpenID_ServerResponse->toFormMarkup]
Diffstat (limited to 'Auth/OpenID')
-rw-r--r--Auth/OpenID/Server.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php
index 7820902..acd9017 100644
--- a/Auth/OpenID/Server.php
+++ b/Auth/OpenID/Server.php
@@ -1192,9 +1192,10 @@ class Auth_OpenID_ServerResponse {
*
* @return str
*/
- function toFormMarkup()
+ function toFormMarkup($form_tag_attrs=null)
{
- return $this->fields->toFormMarkup($this->request->return_to);
+ return $this->fields->toFormMarkup($this->request->return_to,
+ $form_tag_attrs);
}
/*