summaryrefslogtreecommitdiff
path: root/lib/prado/framework
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-01-31 23:47:04 +0100
committeremkael <emkael@tlen.pl>2018-01-31 23:47:04 +0100
commitb08745d88d9232cf2c8d436c37ca556332769bd6 (patch)
treec08f6f8ba572f0d6eb687b5aa28a9522c9f0ae5c /lib/prado/framework
parentba5283736b47f513719b715631d3a1d3f86b6568 (diff)
Upgrading Prado to 3.3.3
Diffstat (limited to 'lib/prado/framework')
-rw-r--r--lib/prado/framework/PradoBase.php2
-rw-r--r--lib/prado/framework/Web/Javascripts/source/prado/prado.js2
-rw-r--r--lib/prado/framework/Web/THttpResponse.php5
-rw-r--r--lib/prado/framework/pradolite.php2
4 files changed, 4 insertions, 7 deletions
diff --git a/lib/prado/framework/PradoBase.php b/lib/prado/framework/PradoBase.php
index f6c0312..01374b4 100644
--- a/lib/prado/framework/PradoBase.php
+++ b/lib/prado/framework/PradoBase.php
@@ -69,7 +69,7 @@ class PradoBase
*/
public static function getVersion()
{
- return '3.3.2';
+ return '3.3.3';
}
/**
diff --git a/lib/prado/framework/Web/Javascripts/source/prado/prado.js b/lib/prado/framework/Web/Javascripts/source/prado/prado.js
index 2000537..3ff23b9 100644
--- a/lib/prado/framework/Web/Javascripts/source/prado/prado.js
+++ b/lib/prado/framework/Web/Javascripts/source/prado/prado.js
@@ -271,7 +271,7 @@ var Prado =
* Version of Prado clientscripts
* @var Version
*/
- Version: '3.3.2',
+ Version: '3.3.3',
/**
* Registry for Prado components
diff --git a/lib/prado/framework/Web/THttpResponse.php b/lib/prado/framework/Web/THttpResponse.php
index 48328c3..e11a715 100644
--- a/lib/prado/framework/Web/THttpResponse.php
+++ b/lib/prado/framework/Web/THttpResponse.php
@@ -531,10 +531,7 @@ class THttpResponse extends TModule implements ITextWriter
if($this->getRequest()->getHttpProtocolVersion() === null)
$protocol='HTTP/1.1';
- $phpSapiName = substr(php_sapi_name(), 0, 3);
- $cgi = $phpSapiName == 'cgi' || $phpSapiName == 'fpm';
-
- header(($cgi ? 'Status:' : $protocol).' '.$this->_status.' '.$this->_reason, true, TPropertyValue::ensureInteger($this->_status));
+ header($protocol.' '.$this->_status.' '.$this->_reason, true, TPropertyValue::ensureInteger($this->_status));
$this->_httpHeaderSent = true;
}
diff --git a/lib/prado/framework/pradolite.php b/lib/prado/framework/pradolite.php
index 37f93ec..724cff8 100644
--- a/lib/prado/framework/pradolite.php
+++ b/lib/prado/framework/pradolite.php
@@ -25,7 +25,7 @@ class PradoBase
protected static $classExists = array();
public static function getVersion()
{
- return '3.3.2';
+ return '3.3.3';
}
public static function initErrorHandlers()
{