cvs: smarty /docs/en/designers/language-custom-functions language-function-html-radios.xml

[email protected] ("Peter 'Mash' Morgan") Mon, 13 Mar 2006 23:31:02 -0000
Newsgroups php.smarty.cvs
Message-ID <cvspete_morgan1142292662@cvsserver>
pete_morgan		Mon Mar 13 23:31:02 2006 UTC

  Modified files:              
    /smarty/docs/en/designers/language-custom-functions	
                                                       	language-function-html-radios.xml 
  Log:
  oops again
  
http://cvs.php.net/viewcvs.cgi/smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml?r1=1.13&r2=1.14&diff_format=u
Index: smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml
diff -u smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml:1.13 smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml:1.14
--- smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml:1.13	Mon Mar 13 23:21:00 2006
+++ smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml	Mon Mar 13 23:31:02 2006
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.13 $ -->
+<!-- $Revision: 1.14 $ -->
 <sect1 id="language.function.html.radios">
  <title>{html_radios}</title>
   <para>
@@ -152,7 +152,7 @@
 <?php
 
 $sql = 'select type_id, types from contact_types order by type';
-$smarty->assign('types',$db->getAssoc($sql));
+$smarty->assign('contact_types',$db->getAssoc($sql));
 
 $sql = 'select contact_id, name, email, contact_type_id '
         .'from contacts where contact_id='.$contact_id;