Index: filefield.theme.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/filefield/filefield.theme.inc,v retrieving revision 1.7 diff -u -r1.7 filefield.theme.inc --- filefield.theme.inc 12 Mar 2009 03:08:36 -0000 1.7 +++ filefield.theme.inc 12 Mar 2009 03:16:10 -0000 @@ -42,10 +42,10 @@ * A URL string to the icon, or FALSE if an appropriate icon could not be * found. */ -function filefield_icon_url($file, $theme = NULL) { +function _filefield_icon_url($file, $theme = NULL) { global $base_url; - if ($iconpath = filefield_icon_path($file, $theme)) { + if ($iconpath = _filefield_icon_path($file, $theme)) { return $base_url .'/'. $iconpath; } return FALSE; @@ -63,7 +63,7 @@ * A string to the icon as a local path, or FALSE if an appropriate icon could * not be found. */ -function filefield_icon_path($file, $theme = NULL) { +function _filefield_icon_path($file, $theme = NULL) { if (!isset($theme)) { $theme = variable_get('filefield_icon_theme', 'protocons'); }