diff options
author | admin <devnull@localhost> | 2006-10-07 05:16:53 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-07 05:16:53 +0200 |
commit | 75198f97ba9df6e5696ac295820d9d73a4e4f441 (patch) | |
tree | 0ed58ab84c4a5f97808e2af8422f578e625300a8 /system/helpers/form_helper.php | |
parent | 88a8ad187b13b36d6120eae2344fe16c3a76219d (diff) |
Diffstat (limited to 'system/helpers/form_helper.php')
-rw-r--r-- | system/helpers/form_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index eb97913f1..3fd361041 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -40,9 +40,9 @@ */ function form_open($action = '', $attributes = array(), $hidden = array()) { - $obj =& get_instance(); + $CI =& get_instance(); - $form = '<form action="'.$obj->config->site_url($action).'"'; + $form = '<form action="'.$CI->config->site_url($action).'"'; if ( ! isset($attributes['method'])) { |