mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
fixed typos
This commit is contained in:
@@ -3607,7 +3607,7 @@ You must supply a <b>state</b>.
|
|||||||
<para>
|
<para>
|
||||||
All parameters that are not in the list above are printed as
|
All parameters that are not in the list above are printed as
|
||||||
name/value-pairs inside each of the created <input>-tags.
|
name/value-pairs inside each of the created <input>-tags.
|
||||||
</para
|
</para>
|
||||||
<example>
|
<example>
|
||||||
<title>html_checkboxes</title>
|
<title>html_checkboxes</title>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
@@ -3617,7 +3617,7 @@ require('Smarty.php.class');
|
|||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
||||||
Johnson','CHarlie Brown'));
|
Johnson','Charlie Brown'));
|
||||||
$smarty->assign('customer_id', 1001);
|
$smarty->assign('customer_id', 1001);
|
||||||
$smarty->display('index.tpl');
|
$smarty->display('index.tpl');
|
||||||
|
|
||||||
@@ -3634,7 +3634,7 @@ $smarty = new Smarty;
|
|||||||
$smarty->assign('cust_checkboxes', array(
|
$smarty->assign('cust_checkboxes', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
1002 => 'Jack Smith',
|
1002 => 'Jack Smith',
|
||||||
1003 => 'Jane Johnson','Carlie Brown'));
|
1003 => 'Jane Johnson','Charlie Brown'));
|
||||||
$smarty->assign('customer_id', 1001);
|
$smarty->assign('customer_id', 1001);
|
||||||
$smarty->display('index.tpl');
|
$smarty->display('index.tpl');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user