Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion licensereturn.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<?php
Expand Down
6 changes: 3 additions & 3 deletions wplicense.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ function allow_content_override_site_license() {
function plugin_default_license() {
$this->_logger('Got default settings');
return $license = array(
'deed' => 'http://creativecommons.org/licenses/by-sa/4.0/',
'image' => 'http://i.creativecommons.org/l/by-sa/4.0/88x31.png',
'deed' => 'https://creativecommons.org/licenses/by-sa/4.0/',
'image' => 'https://i.creativecommons.org/l/by-sa/4.0/88x31.png',
'attribute_to' => '',
'title' => get_bloginfo('name'),
'name' => 'Creative Commons Attribution-Share Alike 4.0 License',
Expand Down Expand Up @@ -308,7 +308,7 @@ function select_license_html( $location = null, $echo = true ) {

$html = '';
$html .= "<span id='license-display'></span>";
$html .= '<br id="license"><a title="' . __('Choose a Creative Commons license', $this->localization_domain) . '" class="thickbox edit-license" href="http://creativecommons.org/choose/?';
$html .= '<br id="license"><a title="' . __('Choose a Creative Commons license', $this->localization_domain) . '" class="thickbox edit-license" href="https://creativecommons.org/choose/?';
$html .= 'partner=WordPress+License+Plugin&';
$html .= $lang;
$html .= '&exit_url=' . $this->plugin_url . 'licensereturn.php?url=[license_url]%26name=[license_name]%26button=[license_button]%26deed=[deed_url]&';
Expand Down