ok i have attached it as a DOC file let me know if that works
Code:<?php /** * paypal.php payment module class for Paypal IPN payment method * * @package paymentMethod * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: paypal.php 5352 2006-12-22 21:35:58Z drbyte $ */ define('MODULE_PAYMENT_PAYPAL_TAX_OVERRIDE', 'true'); if (IS_ADMIN_FLAG === true) { include_once(DIR_FS_CATALOG_MODULES . 'payment/paypal/paypal_functions.php'); } else { include_once(DIR_WS_MODULES . 'payment/paypal/paypal_functions.php'); } /** * paypal IPN payment method class * */ class paypal extends base { /** * string repesenting the payment method * * @var string */ var $code; /** * $title is the displayed name for this payment method * * @var string */ var $title; /** * $description is a soft name for this payment method * * @var string */ var $description; /** * $enabled determines whether this module shows or not... in catalog. * * @var boolean */ var $enabled; /** * constructor * * @param int $paypal_ipn_id * @return paypal */ function paypal($paypal_ipn_id = '') { global $order, $messageStack; $this->code = 'paypal'; EDIT: * SNIP*



