What version are you using? You might have a corrupt file from an upload problem.
Below is line 264-271 from this file in ZenCart 1.3.5
Code:
function admin_notification($zf_order_id) {
global $db;
$output = '';
$sql = "select * from " . TABLE_PAYPAL . " where zen_order_id = '" . (int)$zf_order_id . "' order by paypal_ipn_id DESC LIMIT 1";
$ipn = $db->Execute($sql);
if ($ipn->RecordCount() > 0) require(DIR_FS_CATALOG. DIR_WS_MODULES . 'payment/paypal/paypal_admin_notification.php');
return $output;
}