Browse Source

Remove undocumented magic features for IIS.

Undocumented, untested features break very easily. It is best to not
have them where possible.
mark_story 12 years ago
parent
commit
fe809cd85d
1 changed files with 0 additions and 5 deletions
  1. 0 5
      lib/Cake/basics.php

+ 0 - 5
lib/Cake/basics.php

@@ -320,11 +320,6 @@ if (!function_exists('env')) {
 		}
 
 		switch ($key) {
-			case 'SCRIPT_FILENAME':
-				if (defined('SERVER_IIS') && SERVER_IIS === true) {
-					return str_replace('\\\\', '\\', env('PATH_TRANSLATED'));
-				}
-				break;
 			case 'DOCUMENT_ROOT':
 				$name = env('SCRIPT_NAME');
 				$filename = env('SCRIPT_FILENAME');