some folks have asked me why the urls were not working correctly on the testimonials page to click the offsite url entered by customers. i have added the code to pre-populate that filed with "http://" so that customer can see that it is needed to work properly. I know that the code "could" be edited in other ways to remedy this but it was a quick copy/edit from html_output.php for me.

near line 134 after this code:
$html_text = tep_db_prepare_input($HTTP_POST_VARS['html_text']);
}
break;
}
}
add:
// Output a form testimonials url input field
function tep_draw_testimonial_url_input_field($name, $value = '', $type = 'text', $reinsert_value = true) {
$field = '';
return $field;
}
// Output a testimonials url field
function tep_draw_testimonial_url_field($name, $value = '') {
return tep_draw_testimonial_url_input_field($name, $value);
}
and then simply change the call to that function on line (or near) 177 to:


now that field will show "http://" by default, solving this small issue :)

More...