2007-11-19 Sancho Lerena <slerena@gmail.com>
* index.php: Included patch summited by Guru Evi (guruevi) for HTTPS support. THanks evi ! :) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@678 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9a79086e58
commit
a472c5d389
|
@ -1,3 +1,7 @@
|
||||||
|
2007-11-19 Sancho Lerena <slerena@gmail.com>
|
||||||
|
|
||||||
|
* index.php: Included patch summited by Guru Evi (guruevi) for HTTPS support. THanks evi ! :)
|
||||||
|
|
||||||
2007-10-14 Raul Mateos <raulofpandora@gmail.com>
|
2007-10-14 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* godmode/modules/manage_network_components.php: Added deleted table row.
|
* godmode/modules/manage_network_components.php: Added deleted table row.
|
||||||
|
|
|
@ -83,8 +83,7 @@ if ( (isset ($_GET["refr"])) || (isset($_POST["refr"])) ){
|
||||||
$intervalo = entrada_limpia ($_POST["refr"]);
|
$intervalo = entrada_limpia ($_POST["refr"]);
|
||||||
if ($intervalo > 0){
|
if ($intervalo > 0){
|
||||||
// Agent selection filters and refresh
|
// Agent selection filters and refresh
|
||||||
$query = 'http://' . $_SERVER['SERVER_NAME']; // TODO: Check for https
|
$query = 'http' . (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == TRUE ? 's': '') . '://' . $_SERVER['SERVER_NAME'];
|
||||||
|
|
||||||
if ($_SERVER['SERVER_PORT'] != 80)
|
if ($_SERVER['SERVER_PORT'] != 80)
|
||||||
$query .= ":" . $_SERVER['SERVER_PORT'];
|
$query .= ":" . $_SERVER['SERVER_PORT'];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue