Skip to content

Commit

Permalink
Merge pull request #1 from suin/master
Browse files Browse the repository at this point in the history
Browser reports security warnings because of referencing HTTP resources in HTTPS context
  • Loading branch information
kilica committed Aug 2, 2012
2 parents 335aa39 + ce2b73d commit f846637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html/modules/legacy/class/Legacy_HeaderScript.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ protected function _loadGoogleJQueryLibrary()
{
$apiKey = XCube_Root::getSingleton()->getSiteConfig('jQuery', 'GoogleApiKey');
$apiKey = (isset($apiKey)) ? '?key='.$apiKey : null;
return '<script type="text/javascript" src="http://www.google.com/jsapi'.$apiKey.'"></script>
return '<script type="text/javascript" src="//www.google.com/jsapi'.$apiKey.'"></script>
<script type="text/javascript"><!--
google.load("language", "1");
google.load("jquery", "'. $this->_mCore .'");
Expand Down
2 changes: 1 addition & 1 deletion html/modules/legacyRender/xoops_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"description"=>"_MI_LR_CSS_FILE_DESC",
"formtype"=>"textbox",
"valuetype"=>"text",
"default"=>"http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css"
"default"=>"//ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css"
);

$modversion['config'][]=array (
Expand Down

0 comments on commit f846637

Please sign in to comment.