fixed typos

This commit is contained in:
messju
2003-05-02 07:58:45 +00:00
parent cf21e1270e
commit ebe4d61475

View File

@@ -3607,7 +3607,7 @@ You must supply a <b>state</b>.
<para>
All parameters that are not in the list above are printed as
name/value-pairs inside each of the created &lt;input&gt;-tags.
</para
</para>
<example>
<title>html_checkboxes</title>
<programlisting>
@@ -3617,7 +3617,7 @@ require('Smarty.php.class');
$smarty = new Smarty;
$smarty-&gt;assign('cust_ids', array(1000,1001,1002,1003));
$smarty-&gt;assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
Johnson','CHarlie Brown'));
Johnson','Charlie Brown'));
$smarty-&gt;assign('customer_id', 1001);
$smarty-&gt;display('index.tpl');
@@ -3634,7 +3634,7 @@ $smarty = new Smarty;
$smarty-&gt;assign('cust_checkboxes', array(
1001 =&gt; 'Joe Schmoe',
1002 =&gt; 'Jack Smith',
1003 =&gt; 'Jane Johnson','Carlie Brown'));
1003 =&gt; 'Jane Johnson','Charlie Brown'));
$smarty-&gt;assign('customer_id', 1001);
$smarty-&gt;display('index.tpl');