backed out renaming of _get_plugin_filepath() to get_plugin_filepath()

we'll stick to _get_plugin_filepath() and look for a more viable
solution to be exposed to plugin-writers.
This commit is contained in:
messju
2004-07-23 15:34:53 +00:00
parent aa016f3ded
commit c9844d410b
12 changed files with 17 additions and 29 deletions

View File

@@ -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");