I'm in the middle of installing the latest version, and came up to a code merge roadblock...

In my stock Zen Cart 1.37 file:
Code:
 * @version $Id: tpl_checkout_payment_default.php 5414 2006-12-27 07:51:03Z drbyte $
I find this file does not contain the following specific code fragment which Option B in the install doc says to replace (starting at line 127):
Code:
<?php
    if (sizeof($selection) > 1) {
  ?>
I have for line 117-121
Code:
<?php
  $selection = $payment_modules->selection();
  if (sizeof($selection) > 1) {
?>
But this is not the same as in the install doc.
So if I edit as suggested then I am suppose to delete the following line?
Code:
$selection = $payment_modules->selection();
So I'm not sure what to replace???

Further below I found on line 136-139:
Code:
<?php
    if (sizeof($selection) > 1) {
        if (empty($selection[$i]['noradio'])) {
 ?>
But I don't think it was this block that was referenced.

I do not know which to replace?

A related recommend. In the current OPTION B install instructions, it would be very helpful if some "reference" code was provided, both above and below the various code snippets that need replaced. This would be especially helpful in locating/replacing small code fragments (as in the above example). Thanks.

Woody