--- site_user_list.module 2007-06-22 11:57:42.000000000 -0400 +++ c:\xampplite\htdocs\newcmlp\sites\default\modules\site_user_list\site_user_list.module 2007-10-14 09:29:01.328125000 -0400 @@ -941,7 +941,12 @@ function site_user_list_form() { if ($template_condition_ok) { if ($fields[$f]['eval_template']) { // if the template should be evaluated, eval it - $row[] = drupal_eval(''); + $code = ''; + ob_start(); + print eval('?>'. $code); + $output = ob_get_contents(); + ob_end_clean(); + $row[] = $output; } else { // otherwise, use strtr passing the available columns for simple replacement