summaryrefslogtreecommitdiff
path: root/themes/default/views/form.html.php
blob: 802b1dd6bf9ac8516e28fd45c983b7c17f805fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<? defined("SYSPATH") or die("No direct script access."); ?>
<?
print($open);

// Not sure what to do with these, but at least show that we received them.
if ($class) {
  print "<!-- unused class in form.html.php: $class -->";
}
if ($title) {
  print "<!-- unused title in form.html.php: $title -->";
}

print form_helper::Draw_Form($inputs);

print($close);
?>