upport
This commit is contained in:
12
docs/NEWS
12
docs/NEWS
@ -15,6 +15,18 @@ Version 2.0 ()
|
|||||||
|
|
||||||
* Use Smarty for backend display output
|
* Use Smarty for backend display output
|
||||||
|
|
||||||
|
Version 1.7.3 ()
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* Trackback to https:// style URLs will use proper port 443 instead
|
||||||
|
of 80.
|
||||||
|
|
||||||
|
Version 1.7.2 (July 26th 2013)
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* Fix a syntax error in the "mysql" deprecation code, thanks
|
||||||
|
to Ian
|
||||||
|
|
||||||
Version 1.7.1 ()
|
Version 1.7.1 ()
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -119,6 +119,10 @@ function _serendipity_send($loc, $data, $contenttype = null) {
|
|||||||
$target['query'] = '?' . str_replace('&', '&', $target['query']);
|
$target['query'] = '?' . str_replace('&', '&', $target['query']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($target['scheme'] == 'https' && empty($target['port'])) {
|
||||||
|
$target['port'] = 443;
|
||||||
|
}
|
||||||
|
|
||||||
if (!is_numeric($target['port'])) {
|
if (!is_numeric($target['port'])) {
|
||||||
$target['port'] = 80;
|
$target['port'] = 80;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user