On Jan 20, 2014, at 23:04, Austin Mico <un.f.m....@gmail.com> wrote: > If you have this code below which can be viewed exactly like this on browser > on version 1.8.4 > <?php > > // Define path to application directory > defined('APPLICATION_PATH') > || define('APPLICATION_PATH', realpath(dirname(__FILE__) . > '/../application')); > > // Define application environment > defined('APPLICATION_ENV') > || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? > getenv('APPLICATION_ENV') : 'production')); > > // Ensure library/ is on include_path > set_include_path(implode(PATH_SEPARATOR, array( > realpath(APPLICATION_PATH . '/../library'), > get_include_path(), > ))); > > /** Zend_Application */ > require_once 'Zend/Application.php'; > > // Create application, bootstrap, and run > $application = new Zend_Application( > APPLICATION_ENV, > APPLICATION_PATH . '/configs/application.ini' > ); > $application->bootstrap() > ->run(); > > > Here is the the source code viewed on browser after installing 1.8.5-1. > > bootstrap() ->run();
That’s exactly what I get *if* the server is sending this with the MIME type text/html. Is it? On my system, when the svn:mime-type property of this file is not set, it uses the MIME type application/x-httpd-php for .php files, which causes the browser to not display it at all but rather download it. If you want it to display it unaltered, you could have the server send the MIME type text/plain.