diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/mageia/page_footer.php | 2 | ||||
-rw-r--r-- | themes/mageia/page_header.php | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/themes/mageia/page_footer.php b/themes/mageia/page_footer.php index a5c5bd0..b32e71c 100644 --- a/themes/mageia/page_footer.php +++ b/themes/mageia/page_footer.php @@ -3,7 +3,7 @@ <hr /> <footer> <p>Generated at <?php echo $date_gen; ?>. - Code for this page is in <a rel="nofollow" href="http://gitweb.mageia.org/web/pkgsubmit/">http://gitweb.mageia.org/web/pkgsubmit/</a>.</p> + Code for this page is in <a rel="nofollow" href="https://gitweb.mageia.org/web/pkgsubmit/">https://gitweb.mageia.org/web/pkgsubmit/</a>.</p> </footer> </article> </body> diff --git a/themes/mageia/page_header.php b/themes/mageia/page_header.php index eb0f835..746b19b 100644 --- a/themes/mageia/page_header.php +++ b/themes/mageia/page_header.php @@ -5,7 +5,7 @@ <title><?php echo strip_tags($title); ?></title> <meta name="robots" content="<?php echo $robots; ?>"> <link rel="home" href="<?php echo $g_root_url; ?>"> - <link rel="author" href="http://www.mageia.org/"> + <link rel="author" href="https://www.mageia.org/"> <link rel="icon" type="image/png" href="themes/mageia/favicon.png"> <link rel="stylesheet" href="themes/mageia/style.css"> <meta name="viewport" content="width=900,initial-scale=1,user-scalable=yes"> @@ -22,7 +22,7 @@ if (!isset($_GET['package'])) { $unmaintained_count = file_exists($unmaintained_file) ? count(file($unmaintained_file)) : 0; $missing_deps = sprintf('<span id="missing_deps" style="display: none"><strong id="missing_deps_count"></strong> <a rel="nofollow" href="%s">broken <abbr title="dependencies">deps.</abbr></a>' . $separator . '</span>', - 'http://check.mageia.org/cauldron/dependencies.html' + 'https://check.mageia.org/cauldron/dependencies.html' ); if ($unmaintained_count > 0) { @@ -39,7 +39,7 @@ if (!isset($_GET['package'])) { $figures_list[] = sprintf('<a rel="nofollow" href="%s">Some updates to validate</a> <a href="%s" class="action-btn" title="%s">%s</a>', - 'http://madb.mageia.org/tools/updates', + 'https://madb.mageia.org/tools/updates', 'https://wiki.mageia.org/en/QA_process_for_validating_updates', 'YES you can help!', 'see how' ); @@ -56,7 +56,7 @@ if (!isset($_GET['package'])) { </header> <script type="text/javascript"> var req = new XMLHttpRequest(); - var deps_url = "http://check.mageia.org/cauldron/dependencies.rss"; + var deps_url = "https://check.mageia.org/cauldron/dependencies.rss"; req.open('GET', deps_url, true); req.onload = function () { var missing_deps_count = req.responseText.match(/<item>/gm); |