Magento Update to 1.4.1.0 Soap Fatal Error

There is another show stopper if you are utilizing web services.

A typo in Magento Soap.php file at lines 133-135:

} else {
 $this->fault('0', 'Unable to load Soap extension on the server');
 return $this;

to the patched version:

} else {
  $this->fault('0', 'Unable to load Soap extension on the server');
}
return $this;

Add the missing curly brace!

LiveZilla Live Help