summaryrefslogtreecommitdiff
path: root/modules/forge/libraries
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-11-25 19:24:30 -0800
committerBharat Mediratta <bharat@menalto.com>2009-11-25 19:24:30 -0800
commit5f521014f68803bb0bbab5fe30e1e2c5f61d1b37 (patch)
tree86fbe0d04f9972200fc54499d923242948aa709b /modules/forge/libraries
parent60c20b0045ade2ceeff648c6b97180df5b3a1dbc (diff)
form::close() went away in Kohana 2.4
Diffstat (limited to 'modules/forge/libraries')
-rw-r--r--modules/forge/libraries/Forge.php2
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;