diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2023-12-29 11:45:57 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2023-12-29 11:45:57 +0000 |
commit | 543778205535151bd3ff39e7780e26b7e9b0fd92 (patch) | |
tree | 63ec5db3c594cd0b07f9348d4bd29664568373a9 /scripts/diag.php | |
parent | 056ef8ccdfcd08394a393d6823faa684479d0767 (diff) | |
download | pmwiki.svn-543778205535151bd3ff39e7780e26b7e9b0fd92.tar.bz2 |
RecipeCheck use https. Add $Filterable.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4573 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/diag.php')
-rw-r--r-- | scripts/diag.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/diag.php b/scripts/diag.php index 67fd5a3e..db9e2a78 100644 --- a/scripts/diag.php +++ b/scripts/diag.php @@ -1,5 +1,5 @@ <?php if (!defined('PmWiki')) exit(); -/* Copyright 2003-2015 Patrick R. Michaud (pmichaud@pobox.com) +/* Copyright 2003-2023 Patrick R. Michaud (pmichaud@pobox.com) This file is part of PmWiki; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -61,7 +61,7 @@ function StopWatchHTML($pagename, $print = 0) { } ### From Cookbook:RecipeCheck -/* Copyright 2007-2019 Patrick R. Michaud (pmichaud@pobox.com) +/* Copyright 2007-2023 Patrick R. Michaud (pmichaud@pobox.com) This recipe adds ?action=recipecheck to a site. When activated, ?action=recipecheck fetches the current list of Cookbook recipes @@ -79,6 +79,7 @@ function StopWatchHTML($pagename, $print = 0) { - explicit black text - skip non-php files and directories * 2019-11-28: Added to scripts/diag.php by Petko + * Subsequent changes listed at PmWiki:ChangeLog */ if($action=='recipecheck') { SDV($HandleActions['recipecheck'], 'HandleRecipeCheckCore'); @@ -92,7 +93,7 @@ if($action=='recipecheck') { table.recipecheck { border:1px solid #cccccc; padding:4px; } '); - SDV($RecipeListUrl, 'http://www.pmwiki.org/pmwiki/recipelist'); + SDV($RecipeListUrl, 'https://www.pmwiki.org/pmwiki/recipelist'); } function HandleRecipeCheckCore($pagename, $auth = 'admin') { |