cvs: smarty /libs/plugins function.html_checkboxes.php function.html_radios.php

"Messju Mohr" <[email protected]>
Newsgroups gmane.comp.php.cvs.smarty
Message-ID <cvsmessju1090597362@cvsserver>
messju		Fri Jul 23 11:42:42 2004 EDT

  Modified files:              
    /smarty/libs/plugins	function.html_checkboxes.php 
                        	function.html_radios.php 
  Log:
  there was little flaw in smarty_function_html_radios() and
  smarty_function_html_checkboxes():
  
  the newly introduced assign-attribute was still added to the
  tag-output as an extra-attribute.
  
  fixed.
  
  
  
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_checkboxes.php?r1=1.16&r2=1.17&ty=u
Index: smarty/libs/plugins/function.html_checkboxes.php
diff -u smarty/libs/plugins/function.html_checkboxes.php:1.16 smarty/libs/plugins/function.html_checkboxes.php:1.17
--- smarty/libs/plugins/function.html_checkboxes.php:1.16	Fri Jul 23 11:34:52 2004
+++ smarty/libs/plugins/function.html_checkboxes.php	Fri Jul 23 11:42:41 2004
@@ -82,6 +82,9 @@
                 $options = (array)$_val;
                 break;
 
+            case 'assign':
+                break;
+
             default:
                 if(!is_array($_val)) {
                     $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_radios.php?r1=1.19&r2=1.20&ty=u
Index: smarty/libs/plugins/function.html_radios.php
diff -u smarty/libs/plugins/function.html_radios.php:1.19 smarty/libs/plugins/function.html_radios.php:1.20
--- smarty/libs/plugins/function.html_radios.php:1.19	Fri Jul 23 11:34:53 2004
+++ smarty/libs/plugins/function.html_radios.php	Fri Jul 23 11:42:41 2004
@@ -85,6 +85,8 @@
                 $options = (array)$_val;
                 break;
 
+            case 'assign':
+                break;
 
             default:
                 if(!is_array($_val)) {

-- 
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.