From: <var...@us...> - 2021-06-28 14:17:35
|
Revision: 10334 http://sourceforge.net/p/phpwiki/code/10334 Author: vargenau Date: 2021-06-28 14:17:34 +0000 (Mon, 28 Jun 2021) Log Message: ----------- http://www.php.net --> https://www.php.net Modified Paths: -------------- trunk/INSTALL trunk/configurator.php trunk/doc/README.coding trunk/lib/FileFinder.php trunk/lib/HttpClient.php trunk/lib/Request.php trunk/lib/WikiDB/adodb/adodb-csvlib.inc.php trunk/lib/WikiDB/adodb/adodb-lib.inc.php trunk/lib/WikiDB/adodb/adodb-time.inc.php trunk/lib/WikiDB/adodb/drivers/adodb-postgres64.inc.php trunk/lib/WikiTheme.php trunk/lib/interwiki.map trunk/lib/plugin/FuzzyPages.php trunk/lib/plugin/text2png.php trunk/lib/stdlib.php trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna trunk/passencrypt.php trunk/pgsrc/Help%2FAtomFeedPlugin trunk/pgsrc/Help%2FFuzzyPagesPlugin trunk/pgsrc/Help%2FMoreAboutMechanics trunk/themes/Crao/themeinfo.php trunk/themes/Hawaiian/themeinfo.php trunk/themes/MacOSX/themeinfo.php trunk/themes/MonoBook/themeinfo.php trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/themeinfo.php trunk/themes/Wordpress/themeinfo.php trunk/themes/blog/themeinfo.php trunk/themes/fusionforge/interwiki.map trunk/themes/fusionforge/themeinfo.php trunk/themes/shamino_com/themeinfo.php trunk/themes/wikilens/themeinfo.php Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/INSTALL 2021-06-28 14:17:34 UTC (rev 10334) @@ -13,7 +13,7 @@ want to use, i.e. --with-gdbm, --with-db2, --with-db3, --with-msql, --with-pgsql. Consult the PHP installation manual for specific installation and configure options. -<http://www.php.net/manual/en/installation.php> +<https://www.php.net/manual/en/installation.php> Since version 1.3.0 PhpWiki uses the 'DB.php' from PEAR, a database abstraction layer which is part of PHP. PhpWiki version 1.3.3 and later @@ -121,7 +121,7 @@ 3. ETC Installing PHP is beyond the scope of this document :-) You should -visit <http://www.php.net/> if you don't have PHP. Note that you +visit <https://www.php.net/> if you don't have PHP. Note that you should have the web server configured to allow index.php as the root document of a directory. Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/configurator.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -2480,7 +2480,7 @@ $d = str_replace("<p>", "", $d); $d = str_replace("</p>", "", $d); //restore html entities into characters - // http://www.php.net/manual/en/function.htmlentities.php + // https://www.php.net/manual/en/function.htmlentities.php $trans = get_html_translation_table(HTML_ENTITIES); $trans = array_flip($trans); $d = strtr($d, $trans); Modified: trunk/doc/README.coding =================================================================== --- trunk/doc/README.coding 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/doc/README.coding 2021-06-28 14:17:34 UTC (rev 10334) @@ -4,7 +4,7 @@ We follow, for the most part, the PEAR coding standards: - <http://www.php.net/manual/en/pear.standards.php> + <https://www.php.net/manual/en/pear.standards.php> There's code snippets for configuring Emacs and Vim as well as several other text editors at the above URL. Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/FileFinder.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -589,7 +589,7 @@ static $winnt; if (isset($winnt)) return $winnt; // FIXME: Do this using PHP_OS instead of php_uname(). - // $winnt = (PHP_OS == "WINNT"); // example from http://www.php.net/manual/en/ref.readline.php + // $winnt = (PHP_OS == "WINNT"); // example from https://www.php.net/manual/en/ref.readline.php if (function_usable('php_uname')) $winnt = preg_match('/^Windows NT/', php_uname()); else Modified: trunk/lib/HttpClient.php =================================================================== --- trunk/lib/HttpClient.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/HttpClient.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -215,7 +215,7 @@ // If data is compressed, uncompress it if (isset($this->headers['content-encoding']) && $this->headers['content-encoding'] == 'gzip') { $this->debug('Content is gzip encoded, unzipping it'); - $this->content = substr($this->content, 10); // See http://www.php.net/manual/en/function.gzencode.php + $this->content = substr($this->content, 10); // See https://www.php.net/manual/en/function.gzencode.php $this->content = gzinflate($this->content); } // If $persist_cookies, deal with any cookies Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/Request.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -377,7 +377,7 @@ $compress = false; // "output handler 'ob_gzhandler' cannot be used twice" - // http://www.php.net/ob_gzhandler + // https://www.php.net/ob_gzhandler if ($compress and ini_get("zlib.output_compression")) $compress = false; Modified: trunk/lib/WikiDB/adodb/adodb-csvlib.inc.php =================================================================== --- trunk/lib/WikiDB/adodb/adodb-csvlib.inc.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/WikiDB/adodb/adodb-csvlib.inc.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -264,7 +264,7 @@ */ function adodb_write_file($filename, $contents,$debug=false) { - # http://www.php.net/bugs.php?id=9203 Bug that flock fails on Windows + # https://www.php.net/bugs.php?id=9203 Bug that flock fails on Windows # So to simulate locking, we assume that rename is an atomic operation. # First we delete $filename, then we create a $tempfile write to it and # rename to the desired $filename. If the rename works, then we successfully Modified: trunk/lib/WikiDB/adodb/adodb-lib.inc.php =================================================================== --- trunk/lib/WikiDB/adodb/adodb-lib.inc.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/WikiDB/adodb/adodb-lib.inc.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -119,7 +119,7 @@ } // Force key to upper. -// See also http://www.php.net/manual/en/function.array-change-key-case.php +// See also https://www.php.net/manual/en/function.array-change-key-case.php function _array_change_key_case($an_array) { if (is_array($an_array)) { Modified: trunk/lib/WikiDB/adodb/adodb-time.inc.php =================================================================== --- trunk/lib/WikiDB/adodb/adodb-time.inc.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/WikiDB/adodb/adodb-time.inc.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -64,7 +64,7 @@ (c) 2003-2014 John Lim and released under BSD-style license except for code by jackbbs, which includes adodb_mktime, adodb_get_gmt_diff, adodb_is_leap_year -and originally found at http://www.php.net/manual/en/function.mktime.php +and originally found at https://www.php.net/manual/en/function.mktime.php ============================================================================= Modified: trunk/lib/WikiDB/adodb/drivers/adodb-postgres64.inc.php =================================================================== --- trunk/lib/WikiDB/adodb/drivers/adodb-postgres64.inc.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/WikiDB/adodb/drivers/adodb-postgres64.inc.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -157,7 +157,7 @@ } /** - * Warning from http://www.php.net/manual/function.pg-getlastoid.php: + * Warning from https://www.php.net/manual/function.pg-getlastoid.php: * Using a OID as a unique identifier is not generally wise. * Unless you are very careful, you might end up with a tuple having * a different OID if a database must be reloaded. Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/WikiTheme.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -1472,7 +1472,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. * Modified: trunk/lib/interwiki.map =================================================================== --- trunk/lib/interwiki.map 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/interwiki.map 2021-06-28 14:17:34 UTC (rev 10334) @@ -86,8 +86,8 @@ PPR http://c2.com/cgi/wiki? PangalacticOrg http://www.pangalactic.org/Wiki/ PersonalTelco http://www.personaltelco.net/index.cgi/ -php-function http://www.php.net/%s -php-lookup http://www.php.net/manual-lookup.php?pattern= +php-function https://www.php.net/%s +php-lookup https://www.php.net/manual-lookup.php?pattern= PhpWiki http://phpwiki.demo.free.fr/index.php/ PhpWikiSvn https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/ Pikie http://pikie.darktech.org/cgi/pikie? Modified: trunk/lib/plugin/FuzzyPages.php =================================================================== --- trunk/lib/plugin/FuzzyPages.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/plugin/FuzzyPages.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -31,8 +31,8 @@ * title in the database (php's metaphone() is an improved soundex * function). * - * http://www.php.net/manual/en/function.similar-text.php - * http://www.php.net/manual/en/function.metaphone.php + * https://www.php.net/manual/en/function.similar-text.php + * https://www.php.net/manual/en/function.metaphone.php */ class WikiPlugin_FuzzyPages extends WikiPlugin Modified: trunk/lib/plugin/text2png.php =================================================================== --- trunk/lib/plugin/text2png.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/plugin/text2png.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -41,7 +41,7 @@ * * ./configure --with-gd * - * See <http://www.php.net/manual/pl/ref.image.php> for more info. + * See <https://www.php.net/manual/pl/ref.image.php> for more info. */ // define('text2png_debug', DEBUG & _DEBUG_VERBOSE); @@ -84,7 +84,7 @@ } else { // we don't have png and/or gd. $error_html = _("Sorry, this version of PHP cannot create PNG image files."); - $link = "http://www.php.net/manual/pl/ref.image.php"; + $link = "https://www.php.net/manual/pl/ref.image.php"; $error_html .= sprintf(_("See %s"), $link) . "."; trigger_error($error_html); return HTML::p($error_html); @@ -166,7 +166,7 @@ $error_html = _("PHP was unable to create a new GD image stream. Read 'lib/plugin/text2png.php' for details."); // FIXME: Error manager does not transform URLs passed // through it. - $link = "http://www.php.net/manual/en/function.imagecreate.php"; + $link = "https://www.php.net/manual/en/function.imagecreate.php"; $error_html .= sprintf(_("See %s"), $link) . "."; trigger_error($error_html); return HTML::p($error_html); Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/lib/stdlib.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -1382,7 +1382,7 @@ * Subdirectories are not traversed. * * (This was a function LoadDir in lib/loadsave.php) - * See also http://www.php.net/manual/en/function.readdir.php + * See also https://www.php.net/manual/en/function.readdir.php */ public function getFiles($exclude = '', $sortby = '', $limit = '') { @@ -1572,7 +1572,7 @@ * Recursively count all non-empty elements * in array of any dimension or mixed - i.e. * array('1' => 2, '2' => array('1' => 3, '2' => 4)) - * See http://www.php.net/manual/en/function.count.php + * See https://www.php.net/manual/en/function.count.php */ function count_all($arg) { @@ -1936,7 +1936,7 @@ * @return integer * @desc Feed a sorted array to $haystack and a value to search for to $needle. It will return false if not found or the index where it was found. -From den...@mo... http://www.php.net/array_search +From den...@mo... https://www.php.net/array_search */ function binary_search($needle, $haystack) { @@ -2185,7 +2185,7 @@ * @param string $str the string to analyze * @return bool * - * From http://www.php.net/manual/en/function.mb-detect-encoding.php#85294 + * From https://www.php.net/manual/en/function.mb-detect-encoding.php#85294 */ function is_utf8($str) { $c=0; $b=0; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki ist in der serverseitigen Skriptsprache PHP -([[http://www.php.net/]]) geschrieben. PHP hat eine ähnliche Syntax wie +([[https://www.php.net/]]) geschrieben. PHP hat eine ähnliche Syntax wie Perl oder C und funktioniert ähnlich wie ASP, ~EmbPerl oder JSP. ~PhpWiki besteht aus etwa einem Dutzend Dateien mit gemischtem PHP und HTML. Die Modified: trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica =================================================================== --- trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki está escrito con el lenguaje de servidor PHP, -disponible en [[http://www.php.net/]]. El PHP se asemeja a C y Perl en su +disponible en [[https://www.php.net/]]. El PHP se asemeja a C y Perl en su sintaxis, y funciona muy parecido a ASP, ~EmbPerl o JSP. ~PhpWiki consiste en mas o menos de una docena de ficheros mixtos PHP y HTML. Las páginas web Modified: trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki est écrit en PHP, langage de scripting côté serveur, disponible -sur http://www.php.net/. PHP ressemble au C et à Perl dans sa syntaxe, et +sur https://www.php.net/. PHP ressemble au C et à Perl dans sa syntaxe, et fonctionne comme ASP, ~EmbPerl ou JSP. ~PhpWiki est constitué d'une douzaine de fichiers environ de PHP mélangé à du HTML. Modified: trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues 2021-06-28 14:17:34 UTC (rev 10334) @@ -14,8 +14,8 @@ title in the database (PHP's metaphone() is an improved soundex function). -* http://www.php.net/manual/en/function.similar-text.php -* http://www.php.net/manual/en/function.metaphone.php +* https://www.php.net/manual/en/function.similar-text.php +* https://www.php.net/manual/en/function.metaphone.php == Usage == {{{ Modified: trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento =================================================================== --- trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki è scritto in PHP, linguaggio di scripting lato-server, -disponibile su [[http://www.php.net/]]. PHP riassume nella sua sintassi il C +disponibile su [[https://www.php.net/]]. PHP riassume nella sua sintassi il C e il Perl, e funziona molto similmente a ASP, ~EmbPerl e JPS. ~PhpWiki consiste in una dozzina di file PHP misti HTML. La pagina web Modified: trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken =================================================================== --- trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki is geschreven in de server-zijde scripttaal PHP, die -verkrijgbaar is op [[http://www.php.net/]]. PHP lijkt kwa syntax op C en +verkrijgbaar is op [[https://www.php.net/]]. PHP lijkt kwa syntax op C en Perl en functioneert goed vergelijkbaar met ASP, ~EmbPerl of JSP. PhpWiki bestaat uit een tal bestanden met een mengsel van PHP en HTML. Modified: trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna =================================================================== --- trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki är skriven i skriptspråket PHP, tillgängligt på -[[http://www.php.net/]]. PHP liknar C och Perl till syntaxen och fungerar +[[https://www.php.net/]]. PHP liknar C och Perl till syntaxen och fungerar som ASP, ~EmbPerl eller JSP. ~PhpWiki består av dussin filer med en blandning av PHP och Modified: trunk/passencrypt.php =================================================================== --- trunk/passencrypt.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/passencrypt.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -87,7 +87,7 @@ ) { $password = $posted['password']; /** - * http://www.php.net/manual/en/function.crypt.php + * https://www.php.net/manual/en/function.crypt.php */ // Use the maximum salt length the system can handle. $salt_length = max(CRYPT_SALT_LENGTH, Modified: trunk/pgsrc/Help%2FAtomFeedPlugin =================================================================== --- trunk/pgsrc/Help%2FAtomFeedPlugin 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/pgsrc/Help%2FAtomFeedPlugin 2021-06-28 14:17:34 UTC (rev 10334) @@ -49,7 +49,7 @@ {{{ <<AtomFeed feed=PHPNews description="PHP News" - url=http://www.php.net/feed.atom titleonly=true maxitem=5>> + url=https://www.php.net/feed.atom titleonly=true maxitem=5>> }}} == Author == Modified: trunk/pgsrc/Help%2FFuzzyPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FFuzzyPagesPlugin 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/pgsrc/Help%2FFuzzyPagesPlugin 2021-06-28 14:17:34 UTC (rev 10334) @@ -13,8 +13,8 @@ title in the database (PHP's metaphone() is an improved soundex function). -* http://www.php.net/manual/en/function.similar-text.php -* http://www.php.net/manual/en/function.metaphone.php +* https://www.php.net/manual/en/function.similar-text.php +* https://www.php.net/manual/en/function.metaphone.php == Usage == {{{ Modified: trunk/pgsrc/Help%2FMoreAboutMechanics =================================================================== --- trunk/pgsrc/Help%2FMoreAboutMechanics 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/pgsrc/Help%2FMoreAboutMechanics 2021-06-28 14:17:34 UTC (rev 10334) @@ -7,7 +7,7 @@ Content-Transfer-Encoding: binary ~PhpWiki is written in the server-side scripting language PHP, -available from [[http://www.php.net/]]. PHP resembles C and Perl in its +available from [[https://www.php.net/]]. PHP resembles C and Perl in its syntax, and functions much like ASP, ~EmbPerl or JSP. ~PhpWiki consists of a dozen or so files of mixed PHP and HTML. The web Modified: trunk/themes/Crao/themeinfo.php =================================================================== --- trunk/themes/Crao/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/Crao/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -81,7 +81,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/Hawaiian/themeinfo.php =================================================================== --- trunk/themes/Hawaiian/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/Hawaiian/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -106,7 +106,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/MacOSX/themeinfo.php =================================================================== --- trunk/themes/MacOSX/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/MacOSX/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -172,7 +172,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/MonoBook/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -134,7 +134,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/Portland/themeinfo.php =================================================================== --- trunk/themes/Portland/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/Portland/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -120,7 +120,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/Sidebar/themeinfo.php =================================================================== --- trunk/themes/Sidebar/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/Sidebar/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -193,7 +193,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/Wordpress/themeinfo.php =================================================================== --- trunk/themes/Wordpress/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/Wordpress/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -119,7 +119,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/blog/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -179,7 +179,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/fusionforge/interwiki.map =================================================================== --- trunk/themes/fusionforge/interwiki.map 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/fusionforge/interwiki.map 2021-06-28 14:17:34 UTC (rev 10334) @@ -17,8 +17,8 @@ MetaWiki http://sunir.org/apps/meta.pl? MetaWikiPedia http://meta.wikipedia.com/wiki/ MoinMoin http://moinmoin.wikiwikiweb.de/ -php-function http://www.php.net/%s -php-lookup http://www.php.net/manual-lookup.php?pattern= +php-function https://www.php.net/%s +php-lookup https://www.php.net/manual-lookup.php?pattern= PhpWiki http://phpwiki.demo.free.fr/index.php/ PhpWikiSvn https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/ SourceForge http://sourceforge.net/ Modified: trunk/themes/fusionforge/themeinfo.php =================================================================== --- trunk/themes/fusionforge/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/fusionforge/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -183,7 +183,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/shamino_com/themeinfo.php =================================================================== --- trunk/themes/shamino_com/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/shamino_com/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -118,7 +118,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ Modified: trunk/themes/wikilens/themeinfo.php =================================================================== --- trunk/themes/wikilens/themeinfo.php 2021-06-28 13:50:16 UTC (rev 10333) +++ trunk/themes/wikilens/themeinfo.php 2021-06-28 14:17:34 UTC (rev 10334) @@ -101,7 +101,7 @@ * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See - * http://www.php.net/manual/en/function.strftime.php for details. + * https://www.php.net/manual/en/function.strftime.php for details. * Do not include the server's zone (%Z), times are converted to the * user's time zone. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |