summaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'install.php')
-rwxr-xr-xinstall.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/install.php b/install.php
index 75166a3..5aaaef9 100755
--- a/install.php
+++ b/install.php
@@ -33,7 +33,10 @@ if ($PlanetConfig::isInstalled()) {
OpmlManager::save(new Opml(), custom_path('people.opml'));
//Save password
- $save['password'] = file_put_contents(admin_path('inc/pwd.inc.php'), '<?php $login="admin"; $password="'.md5($_POST['password']).'"; ?>');
+ $save['password'] = file_put_contents(
+ admin_path('inc/pwd.inc.php'),
+ sprintf('<?php $login="admin"; $password="%s"; ?>', hash('sha256', $_POST['password']))
+ );
if (0 != ($save['config'] + $save['password'])) {
$status = 'installed';