diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2015-04-23 23:05:33 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2015-04-23 23:05:33 +0000 |
commit | 1cb0ec5284ee099c79a3cefdf41644c3c53b536d (patch) | |
tree | dc266733f7fea2c1930cc52e249d12945fc3702f /docs | |
parent | aea6409cdacd64a63635bcc73e9306717f2b93bb (diff) | |
download | pmwiki.svn-1cb0ec5284ee099c79a3cefdf41644c3c53b536d.tar.bz2 |
Add pmcrypt() wrapper compatible with PHP 5.6 (PITS:01277); Add HTML5 semantic tags header|footer|nav|address|aside|section|article
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3048 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample-config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sample-config.php b/docs/sample-config.php index 01bfac88..04a950e9 100644 --- a/docs/sample-config.php +++ b/docs/sample-config.php @@ -35,7 +35,7 @@ $WikiTitle = 'PmWiki'; ## the "attr" passwords for the PmWiki and Main groups are locked, so ## an admin password is a good way to unlock those. See PmWiki.Passwords ## and PmWiki.PasswordsAdmin. -# $DefaultPasswords['admin'] = crypt('secret'); +# $DefaultPasswords['admin'] = pmcrypt('secret'); ## Unicode (UTF-8) allows the display of all languages and all alphabets. ## Highly recommended for new wikis. @@ -69,7 +69,7 @@ include_once("scripts/xlpage-utf-8.php"); ## see PmWiki.UploadsAdmin. # $EnableUpload = 1; # $UploadPermAdd = 0; -# $DefaultPasswords['upload'] = crypt('secret'); +# $DefaultPasswords['upload'] = pmcrypt('secret'); ## Setting $EnableDiag turns on the ?action=diag and ?action=phpinfo ## actions, which often helps others to remotely troubleshoot |