From 9475fabee7f5a2a36c7bdaa3d5b59a72c9c79a58 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Mon, 28 Apr 2008 03:13:03 +0000 Subject: [PATCH] Fixed old documentation --- code/MultiForm.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/MultiForm.php b/code/MultiForm.php index 03ea739..bcdf2d1 100644 --- a/code/MultiForm.php +++ b/code/MultiForm.php @@ -100,7 +100,9 @@ abstract class MultiForm extends Form { // Set up the actions from the current step $this->setActions(); - // Set a hidden field in the form to define what this form session ID is + // Set a hidden field in the form to identify this session. + // Depending on what has been configured for $url_type, we + // find an encrypted hash to identify the session. $urlMethod = $this->stat('url_type'); $this->fields->push(new HiddenField('MultiFormSessionID', false, $this->session->$urlMethod));