Files
pi-control/install/resources/content/install_troubleshooting.php
Gregor Schulte b303dd00d6 Init Repo
2021-06-17 12:24:22 +02:00

24 lines
594 B
PHP

<?php
if (!defined('PICONTROL')) exit();
(include_once LIBRARY_PATH.'install/install.function.php') or die('Error: 0x0010');
$tpl->setHeaderTitle(_t('Problembehandlung'));
$filesFolders = fileFolderPermission();
$filesFoldersError = false;
foreach ($filesFolders as $file => $info)
{
if ($info['error'] === true)
{
$filesFoldersError = true;
break;
}
}
$tpl->assign('filesFolders', $filesFolders);
$tpl->assign('filesFoldersError', $filesFoldersError);
$tpl->assign('configHelp', $config['url']['help'].'?s=view&amp;i=1'.getURLLangParam());
$tpl->draw('install_troubleshooting');
?>