From 823d71ced9b4947b1a5a5ade7245d521ed490061 Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 7 Jun 2016 15:17:49 +0200 Subject: * renaming php directory --- app/php/web/BaseUrlDerivedFromBasePath.php | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 app/php/web/BaseUrlDerivedFromBasePath.php (limited to 'app/php/web/BaseUrlDerivedFromBasePath.php') diff --git a/app/php/web/BaseUrlDerivedFromBasePath.php b/app/php/web/BaseUrlDerivedFromBasePath.php deleted file mode 100644 index 2da277f..0000000 --- a/app/php/web/BaseUrlDerivedFromBasePath.php +++ /dev/null @@ -1,29 +0,0 @@ -BaseUrl === NULL && $this->BasePath !== NULL) { - $appWebPath = preg_replace( - '#' . $this->Application->Request->ApplicationUrl . '$#', - '', - $this->Application->Request->ApplicationFilePath - ); - $appBaseUrl = preg_replace( - '#^' . $appWebPath . '#', - '', - dirname($this->Application->Request->ApplicationFilePath) - ); - $this->BaseUrl = $appBaseUrl - . preg_replace( - '#^' . Prado::getPathOfNamespace('Web') . '#', - '', - $this->BasePath - ); - } - parent::init($config); - } - -} - -?> -- cgit v1.2.3