Since upgrading to 1.9.2.2, every magento page on my store is pre-padded with a space before the page content. This breaks xml pages such as the magento soap api, giving the following error when loaded in the browser:
This page contains the following errors:
error on line 1 at column 8: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.
I found that the minimal code required for the spaces to be added is the following:
<?php
require_once 'app/Mage.php';
require_once 'app/code/core/Mage/Core/Model/Config/Options.php';
How can I find the point where the padding occurs?