diff -urp zen-6.x-1.x-dev/STARTERKIT/template.php zen/STARTERKIT/template.php --- zen-6.x-1.x-dev/STARTERKIT/template.php 2008-05-07 01:09:03.000000000 +1000 +++ zen/STARTERKIT/template.php 2008-05-06 23:50:20.000000000 +1000 @@ -59,7 +59,7 @@ if (theme_get_setting('STARTERKIT_fixed' /* -- Delete this line if you want to use this function function STARTERKIT_preprocess(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess($vars); + phptemplate_preprocess($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -76,7 +76,7 @@ function STARTERKIT_preprocess(&$vars, $ /* -- Delete this line if you want to use this function function STARTERKIT_preprocess_page(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_page($vars); + phptemplate_preprocess_page($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -93,7 +93,7 @@ function STARTERKIT_preprocess_page(&$va /* -- Delete this line if you want to use this function function STARTERKIT_preprocess_node(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_node($vars); + phptemplate_preprocess_node($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -110,7 +110,7 @@ function STARTERKIT_preprocess_node(&$va /* -- Delete this line if you want to use this function function STARTERKIT_preprocess_comment(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_comment($vars); + phptemplate_preprocess_comment($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -127,7 +127,7 @@ function STARTERKIT_preprocess_comment(& /* -- Delete this line if you want to use this function function STARTERKIT_preprocess_block(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_block($vars); + phptemplate_preprocess_block($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } diff -urp zen-6.x-1.x-dev/zen_classic/template.php zen/zen_classic/template.php --- zen-6.x-1.x-dev/zen_classic/template.php 2008-05-07 01:09:03.000000000 +1000 +++ zen/zen_classic/template.php 2008-05-06 23:51:47.000000000 +1000 @@ -57,7 +57,7 @@ if (theme_get_setting('zen_classic_fixed /* -- Delete this line if you want to use this function function zen_classic_preprocess(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess($vars); + phptemplate_preprocess($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -74,7 +74,7 @@ function zen_classic_preprocess(&$vars, /* -- Delete this line if you want to use this function function zen_classic_preprocess_page(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_page($vars); + phptemplate_preprocess_page($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -91,7 +91,7 @@ function zen_classic_preprocess_page(&$v /* -- Delete this line if you want to use this function function zen_classic_preprocess_node(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_node($vars); + phptemplate_preprocess_node($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -108,7 +108,7 @@ function zen_classic_preprocess_node(&$v /* -- Delete this line if you want to use this function function zen_classic_preprocess_comment(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_comment($vars); + phptemplate_preprocess_comment($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); } @@ -125,7 +125,7 @@ function zen_classic_preprocess_comment( /* -- Delete this line if you want to use this function function zen_classic_preprocess_block(&$vars, $hook) { // First run Zen's preprocess function. - phptemplate_preprocess_block($vars); + phptemplate_preprocess_block($vars, $hook); $vars['sample_variable'] = t('Lorem ipsum.'); }