From 56325faf8f34cc45103d5facb0580ef19ed6fdd8 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 14 May 2008 10:22:58 +0000 Subject: [PATCH] added an accessor method for $this->session --- code/MultiForm.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/MultiForm.php b/code/MultiForm.php index a08e574..5581669 100644 --- a/code/MultiForm.php +++ b/code/MultiForm.php @@ -164,6 +164,14 @@ abstract class MultiForm extends Form { $this->session->write(); } + /** + * Accessor method to $this->session. + * @return MultiFormSession + */ + function getSession() { + return $this->session; + } + /** * Set up the session. *