Although 1.3.6 is now out, a bug recently came to my attention with using ZC v1.3.5 on Linux.

Admin config file includes:

PHP Code:
  define('HTTP_SERVER''http://domain.com');
  
define('HTTPS_SERVER''https://domain.com');
  
define('HTTP_CATALOG_SERVER''http://domain.com');
  
define('HTTPS_CATALOG_SERVER''https://domain.com');

  
// Use secure webserver for catalog module and/or admin areas?
  
define('ENABLE_SSL_CATALOG''true');
  
define('ENABLE_SSL_ADMIN''true'); 
Using http or https when logging into the Admin area takes me to:
https://domain.com/admin/index.php

From that page forward, all Admin pages are now hard coded with Absolute links using: href="http://....

I was able to reproduce the error using a default install with the default database.

Was this issue known beforehand and is now addressed in 1.3.6?