Hello
I'm attempting to install a mod - "how did you hear about us", and just have a few questions about merging PHP files (as I have other mods such as Captcha etc etc installed, so have some conflicts)
So - my understanding is, when merging any new code this is moved across and 'merged' to the existing code (so I understand that)- but my problem is when I encounter lines which are VERY similar but may have slight differences:
(Just as an example) echo '<br /><nobr><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value']));
and
echo '<br /><nobr><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . nl2br($order->products[$i]['attributes'][$j]['value']);
I've come across quite a few differences such as this, and as this is my first "attempt' at merging (and of course am PHP-illiterate) am a tad lost as to how to proceed.
Coward that I am, has taken me several months to 'be courageous' enough to try this - but now am very very lost.
Any advice would be most appreciated
Many thanks



