There is no line 93 in the standard install.
Code:
// PayPal module cannot be used for purchase > $10,000 USD or 5500 GBP
if ( ($_SESSION['currency'] == 'USD' && $currencies->value($_SESSION['cart']->total, true, 'USD') > 10000)
|| ($_SESSION['currency'] == 'GBP' && $currencies->value($_SESSION['cart']->total, true, 'GBP') > 5500) ) {
$paypalec_enabled = false;
}