Skip to content

Commit

Permalink
install confirm page formatting and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
benhaynes committed Aug 16, 2016
1 parent 1c12c52 commit e8afc32
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions installation/views/confirm.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<tbody>
<?php if ($data->getSafe('strict_mode_enabled') === true): ?>
<tr id="strict_mode_enabled">
<td class="item"><?=__t('Strict Mode Disabled');?></td>
<td class="result"><span class="label label-important"><?=__t('No');?></span><a href="http://getdirectus.com/docs/developer/installation" target="_blank"> ?</a></td>
<td class="item"><?=__t('Strict Mode Disabled');?> (<a href="http://getdirectus.com/docs/developer/installation" target="_blank"><u><?=__t('Learn More');?></u></a>)</td>
<td class="result"><span class="label label-important"><?=__t('No');?></span></td>
</tr>
<?php endif; ?>
<tr>
Expand Down Expand Up @@ -94,12 +94,9 @@
<td style="padding-left: 30px;"><?=__t("Adds TIFF/PSD/PDF Thumbnail Support");?></td>
</tr>
<tr>
<td class="item"><?=__t('Mod_Rewrite Enabled');?></td>
<td class="item"><?=__t('Mod_Rewrite Enabled');?> (<a href="http://getdirectus.com/docs/developer/faq" target="_blank"><u><?=__t("Learn More");?></u></a>)</td>
<td class="result"><?php if (ping_server()) {echo('<span class="label label-success">'.__t('Yes').'</span>');}else{echo('<span class="label label-important">'.__t('No').'</span>');}?></td>
</tr>
<tr>
<td style="padding-left: 30px;"><a href="http://getdirectus.com/docs/developer/faq" target="_blank"><u><?=__t("Docs: Click here to learn more");?></a></u></td>
</tr>
<tr>
<td class="item"><?=__t('Logs Directory Writable');?> (../api/logs/)</td>
<td class="result"><?php if(is_writable('../api/logs')) {echo('<span class="label label-success">'.__t('Yes').'</span>');}else{echo('<span class="label label-important">'.__t('No').'</span>');}?></td>
Expand Down

0 comments on commit e8afc32

Please sign in to comment.