I just spent about an hour trying to figure out where to post this question so I hope this spot is okay!

When going thru the patches recommended by Dr. Byte, the one for the admin/index.php is:
********************************
while (!$customers->EOF) {
$customers->fields['customers_firstname'] = zen_output_string_protected($customers->fields['customers_firstname']);
$customers->fields['customers_lastname'] = zen_output_string_protected($customers->fields['customers_lastname']);
echo ' <div class="row"><span class="left"><a href="' . zen_href_link(FILENAME_CUSTOMERS ....(code snipped here for brevity)........
*********************************
When going in to add this, I'm not sure what it means where it says ....(code snipped here for brevity)........

Here is the code in the original file:
***********************************
while (!$customers->EOF) {
echo ' <div class="row"><span class="left"><a href="' . zen_href_link(FILENAME_CUSTOMERS, 'search=' . $customers->fields['customers_lastname'] . '&origin=' . FILENAME_DEFAULT, 'NONSSL') . '" class="contentlink">'. $customers->fields['customers_firstname'] . ' ' . $customers->fields['customers_lastname'] . '</a></span><span class="rigth">' . "\n";
**************************************
Do I replace all the code down to the last of the original which is: "\n"; or just where do I end this snippet?

Code snipped here for brevity is rather confusing...

Thanks!
Casey