? clean-preprocess-fix.patch Index: template.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/clean/template.php,v retrieving revision 1.1.2.7.2.17.2.31 diff -u -p -r1.1.2.7.2.17.2.31 template.php --- template.php 23 Mar 2010 21:06:09 -0000 1.1.2.7.2.17.2.31 +++ template.php 11 Apr 2010 22:51:47 -0000 @@ -23,10 +23,8 @@ function clean_theme() { * * @param $variables * An array of variables to pass to the theme template. - * @param $hook - * The name of the template being rendered ("node" in this case.) */ -function clean_preprocess_node(&$variables, $hook) { +function clean_preprocess_node(&$variables) { $node = $variables['node']; $variables['pre'] = ''; @@ -56,10 +54,8 @@ function clean_preprocess_node(&$variabl * * @param $variables * An array of variables to pass to the theme template. - * @param $hook - * The name of the template being rendered ("page" in this case.) */ -function clean_preprocess_page(&$variables, $hook) { +function clean_preprocess_page(&$variables) { $base_path = base_path(); $variables['base_theme'] = $path_to_clean = drupal_get_path('theme', 'clean') . '/'; $path_to_theme = path_to_theme() . '/'; @@ -228,8 +224,6 @@ function clean_preprocess_block(&$variab * * @param $variables * An array of variables to pass to the theme template. - * @param $hook - * The name of the template being rendered ("comment" in this case.) */ function clean_preprocess_comment(&$variables) { $comment = $variables['comment']; Index: subthemes/clean_1kb/template.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/clean/subthemes/clean_1kb/Attic/template.php,v retrieving revision 1.1.2.3 diff -u -p -r1.1.2.3 template.php --- subthemes/clean_1kb/template.php 24 Feb 2010 12:07:58 -0000 1.1.2.3 +++ subthemes/clean_1kb/template.php 11 Apr 2010 22:51:47 -0000 @@ -6,10 +6,8 @@ * * @param $variables * An array of variables to pass to the theme template. - * @param $hook - * The name of the template being rendered ("page" in this case.) */ -function clean_1kb_preprocess_page(&$variables, $hook) { +function clean_1kb_preprocess_page(&$variables) { $full_grid_classes = array(); $main_classes = array(); $left_classes = array(); Index: subthemes/clean_960gs/template.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/clean/subthemes/clean_960gs/Attic/template.php,v retrieving revision 1.1.2.2 diff -u -p -r1.1.2.2 template.php --- subthemes/clean_960gs/template.php 24 Feb 2010 12:07:58 -0000 1.1.2.2 +++ subthemes/clean_960gs/template.php 11 Apr 2010 22:51:47 -0000 @@ -6,10 +6,8 @@ * * @param $variables * An array of variables to pass to the theme template. - * @param $hook - * The name of the template being rendered ("page" in this case.) */ -function clean_960gs_preprocess_page(&$variables, $hook) { +function clean_960gs_preprocess_page(&$variables) { $container_classes = array(); $full_grid_classes = array(); $main_classes = array();