diff options
author | Gerrit Uitslag <klapinklapin@gmail.com> | 2023-08-31 00:59:34 +0200 |
---|---|---|
committer | Gerrit Uitslag <klapinklapin@gmail.com> | 2023-08-31 00:59:34 +0200 |
commit | 220897ae26251e8a5703f081d39baae088f6751c (patch) | |
tree | 8d7d0bf7c5e98f50538886fc121556dcc17b5480 /install.php | |
parent | ff84abad8a47d56c1370f7c1fe638403fe2be7f1 (diff) | |
download | dokuwiki-220897ae26251e8a5703f081d39baae088f6751c.tar.gz dokuwiki-220897ae26251e8a5703f081d39baae088f6751c.zip |
update urls and simplify regexp
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install.php b/install.php index 47b36206b..9b33607e7 100644 --- a/install.php +++ b/install.php @@ -131,7 +131,7 @@ header('Content-Type: text/html; charset=utf-8'); left top no-repeat; display: block; width:380px; height:73px; border:none; clear:both;" target="_blank" - href="http://www.dokuwiki.org/security#web_access_security"></a> + href="https://www.dokuwiki.org/security#web_access_security"></a> </div> <div style="float: left; width: 58%;"> @@ -164,8 +164,8 @@ header('Content-Type: text/html; charset=utf-8'); <div style="clear: both"> - <a href="http://dokuwiki.org/"><img src="lib/tpl/dokuwiki/images/button-dw.png" alt="driven by DokuWiki"/></a> - <a href="http://php.net"><img src="lib/tpl/dokuwiki/images/button-php.gif" alt="powered by PHP"/></a> + <a href="https://dokuwiki.org/"><img src="lib/tpl/dokuwiki/images/button-dw.png" alt="driven by DokuWiki"/></a> + <a href="https://php.net"><img src="lib/tpl/dokuwiki/images/button-php.gif" alt="powered by PHP"/></a> </div> </body> </html> @@ -261,7 +261,7 @@ function print_form($d) <input type="checkbox" name="d[pop]" id="pop" <?php echo(($d['pop'] ? ' checked="checked"' : '')); ?> /> <?php echo $lang['i_pop_label'] ?> - <a href="http://www.dokuwiki.org/popularity" target="_blank"><sup>[?]</sup></a> + <a href="https://www.dokuwiki.org/popularity" target="_blank"><sup>[?]</sup></a> </label> </fieldset> @@ -671,7 +671,7 @@ function langsel() $langs = []; while (($file = readdir($dh)) !== false) { - if (preg_match('/^[\._]/', $file)) continue; + if (preg_match('/^[._]/', $file)) continue; if (is_dir($dir . '/' . $file) && file_exists($dir . '/' . $file . '/lang.php')) { $langs[] = $file; } |