git.p6c8.net
/
jirafeau_project.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Translated using Weblate (Arabic)
[jirafeau_project.git]
/
install.php
diff --git
a/install.php
b/install.php
index 2739bc8ab7a103202927321a04bed920c40bc1e5..8c0f686745fccf108b56f1dab831fcb9195f46dc 100644
(file)
--- a/
install.php
+++ b/
install.php
@@
-83,7
+83,7
@@
function jirafeau_check_var_dir($path)
'<br />' . $mkdir_str2);
}
'<br />' . $mkdir_str2);
}
- foreach (array('files', 'links', 'async'
, 'alias'
) as $subdir) {
+ foreach (array('files', 'links', 'async') as $subdir) {
$subpath = $path.$subdir;
if (!jirafeau_mkdir($subpath) || !jirafeau_is_writable($subpath)) {
$subpath = $path.$subdir;
if (!jirafeau_mkdir($subpath) || !jirafeau_is_writable($subpath)) {
@@
-154,7
+154,11
@@
if (isset($_POST['step']) && isset($_POST['next'])) {
break;
case 2:
break;
case 2:
- $cfg['admin_password'] = hash('sha256', $_POST['admin_password']);
+ if (strlen($_POST['admin_password'])) {
+ $cfg['admin_password'] = hash('sha256', $_POST['admin_password']);
+ } else {
+ $cfg['admin_password'] = '';
+ }
jirafeau_export_cfg($cfg);
break;
jirafeau_export_cfg($cfg);
break;
@@
-331,7
+335,7
@@
case 4:
jirafeau_export_cfg($cfg);
echo '<div class="message"><p>' .
t('Jirafeau is now fully operational') . ':' .
jirafeau_export_cfg($cfg);
echo '<div class="message"><p>' .
t('Jirafeau is now fully operational') . ':' .
- '<br /><a href="
' . $cfg['web_root'] . '
">' .
+ '<br /><a href="
./
">' .
$cfg['web_root'].'</a></p></div>';
}
break;
$cfg['web_root'].'</a></p></div>';
}
break;
patrick-canterino.de