diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-11-25 19:24:30 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-25 19:24:30 -0800 |
commit | 5f521014f68803bb0bbab5fe30e1e2c5f61d1b37 (patch) | |
tree | 86fbe0d04f9972200fc54499d923242948aa709b | |
parent | 60c20b0045ade2ceeff648c6b97180df5b3a1dbc (diff) |
form::close() went away in Kohana 2.4
-rw-r--r-- | modules/forge/libraries/Forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forge/libraries/Forge.php b/modules/forge/libraries/Forge.php index d9da4c7d..e607ec29 100644 --- a/modules/forge/libraries/Forge.php +++ b/modules/forge/libraries/Forge.php @@ -299,7 +299,7 @@ class Forge_Core { // Set the form open and close $form->open = form::$form_type(arr::remove('action', $this->attr), $this->attr, $hidden); - $form->close = form::close(); + $form->close = "</form>"; // Set the inputs $form->inputs = $this->inputs; |