Skip to content

Commit

Permalink
Test fix for mixed-content errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jralls committed Mar 4, 2016
1 parent 235410e commit 08a3eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viewdoc.phtml
Expand Up @@ -6,7 +6,7 @@ include("externals/header.phtml");
include("externals/menu.phtml");

# Some base parameters used later on
$basepath = "http://www.gnucash.org/docs";
$basepath = "https://www.gnucash.org/docs";
$helpdoc = "gnucash-help/help.html";
$tcdoc = "gnucash-guide/index.html";
$current_stable = "2.6";
Expand Down Expand Up @@ -85,7 +85,7 @@ if (isset ($_GET["rev"])) {
# To avoid network traffic, the available languages are hard-coded here and should be
# updated if list of languages in which the documentation is available changes
if ($showrev == "trunk") {
$basepath = "http://code.gnucash.org/docs";
$basepath = "https://code.gnucash.org/docs";
$trunk_langs = array ( $helpdoc => array( "C", "de_DE", "it_IT"),
$tcdoc => array( "C", "de_DE", "it_IT", "ja_JP"));
if (!in_array ($showlang, $trunk_langs[$showdoc])) {
Expand Down

0 comments on commit 08a3eab

Please sign in to comment.