cvs: smarty /libs/plugins function.html_checkboxes.php function.html_image.php function.html_options.php function.html_radios.php function.html_select_date.php function.html_select_time.php

"Messju Mohr" <[email protected]>
Newsgroups gmane.comp.php.cvs.smarty
Message-ID <cvsmessju1089645883@cvsserver>
messju		Mon Jul 12 11:24:43 2004 EDT

  Modified files:              
    /smarty/libs/plugins	function.html_checkboxes.php 
                        	function.html_image.php 
                        	function.html_options.php 
                        	function.html_radios.php 
                        	function.html_select_date.php 
                        	function.html_select_time.php 
  Log:
  renamed calls to $smarty->_get_plugin_filepath() to $smarty->get_plugin_filepath()
  
  
  
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_checkboxes.php?r1=1.14&r2=1.15&ty=u
Index: smarty/libs/plugins/function.html_checkboxes.php
diff -u smarty/libs/plugins/function.html_checkboxes.php:1.14 smarty/libs/plugins/function.html_checkboxes.php:1.15
--- smarty/libs/plugins/function.html_checkboxes.php:1.14	Fri Jul  2 10:14:30 2004
+++ smarty/libs/plugins/function.html_checkboxes.php	Mon Jul 12 11:24:43 2004
@@ -40,7 +40,7 @@
  */
 function smarty_function_html_checkboxes($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
+    require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
 
     $name = 'checkbox';
     $values = null;
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_image.php?r1=1.26&r2=1.27&ty=u
Index: smarty/libs/plugins/function.html_image.php
diff -u smarty/libs/plugins/function.html_image.php:1.26 smarty/libs/plugins/function.html_image.php:1.27
--- smarty/libs/plugins/function.html_image.php:1.26	Thu Jan 15 10:04:33 2004
+++ smarty/libs/plugins/function.html_image.php	Mon Jul 12 11:24:43 2004
@@ -36,7 +36,7 @@
  */
 function smarty_function_html_image($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
+    require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
     
     $alt = '';
     $file = '';
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_options.php?r1=1.21&r2=1.22&ty=u
Index: smarty/libs/plugins/function.html_options.php
diff -u smarty/libs/plugins/function.html_options.php:1.21 smarty/libs/plugins/function.html_options.php:1.22
--- smarty/libs/plugins/function.html_options.php:1.21	Tue Dec  9 15:02:06 2003
+++ smarty/libs/plugins/function.html_options.php	Mon Jul 12 11:24:43 2004
@@ -28,7 +28,7 @@
  */
 function smarty_function_html_options($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
+    require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
     
     $name = null;
     $values = null;
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_radios.php?r1=1.17&r2=1.18&ty=u
Index: smarty/libs/plugins/function.html_radios.php
diff -u smarty/libs/plugins/function.html_radios.php:1.17 smarty/libs/plugins/function.html_radios.php:1.18
--- smarty/libs/plugins/function.html_radios.php:1.17	Fri Jul  2 10:14:30 2004
+++ smarty/libs/plugins/function.html_radios.php	Mon Jul 12 11:24:43 2004
@@ -40,7 +40,7 @@
  */
 function smarty_function_html_radios($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
+    require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
    
     $name = 'radio';
     $values = null;
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_select_date.php?r1=1.23&r2=1.24&ty=u
Index: smarty/libs/plugins/function.html_select_date.php
diff -u smarty/libs/plugins/function.html_select_date.php:1.23 smarty/libs/plugins/function.html_select_date.php:1.24
--- smarty/libs/plugins/function.html_select_date.php:1.23	Sun Feb 22 18:29:08 2004
+++ smarty/libs/plugins/function.html_select_date.php	Mon Jul 12 11:24:43 2004
@@ -32,8 +32,8 @@
  */
 function smarty_function_html_select_date($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','make_timestamp');
-    require_once $smarty->_get_plugin_filepath('function','html_options');
+    require_once $smarty->get_plugin_filepath('shared','make_timestamp');
+    require_once $smarty->get_plugin_filepath('function','html_options');
     /* Default values. */
     $prefix          = "Date_";
     $start_year      = strftime("%Y");
http://cvs.php.net/diff.php/smarty/libs/plugins/function.html_select_time.php?r1=1.11&r2=1.12&ty=u
Index: smarty/libs/plugins/function.html_select_time.php
diff -u smarty/libs/plugins/function.html_select_time.php:1.11 smarty/libs/plugins/function.html_select_time.php:1.12
--- smarty/libs/plugins/function.html_select_time.php:1.11	Wed Dec 17 04:33:30 2003
+++ smarty/libs/plugins/function.html_select_time.php	Mon Jul 12 11:24:43 2004
@@ -21,8 +21,8 @@
  */
 function smarty_function_html_select_time($params, &$smarty)
 {
-    require_once $smarty->_get_plugin_filepath('shared','make_timestamp');
-    require_once $smarty->_get_plugin_filepath('function','html_options');
+    require_once $smarty->get_plugin_filepath('shared','make_timestamp');
+    require_once $smarty->get_plugin_filepath('function','html_options');
     /* Default values. */
     $prefix             = "Time_";
     $time               = time();

-- 
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.