Skip to content

Commit

Permalink
Fixed issue #11210: Error on installation
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed May 26, 2016
1 parent 3ff1f94 commit 58576a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/installer/precheck_view.php
Expand Up @@ -62,7 +62,7 @@ function dirReport($dir, $write)
<td><?php eT("Minimum memory available"); ?></td>
<td>64MB</td>
<td><?php
if (isset($bMemoryError) && $bMemoryError) { ?><span style='font-weight:bold; color: red'><?php eT("Too low"); ?>: <?php echo $convertPHPSizeToBytes(ini_get('memory_limit'))/1024/1024; ?>MB</span>
if (isset($bMemoryError) && $bMemoryError) { ?><span style='font-weight:bold; color: red'><?php eT("Too low"); ?>: <?php echo convertPHPSizeToBytes(ini_get('memory_limit'))/1024/1024; ?>MB</span>
<?php } elseif (ini_get('memory_limit')=='-1') eT("Unlimited"); else { echo convertPHPSizeToBytes(ini_get('memory_limit'))/1024/1024; echo ' MB';} ?></td>
</tr>
<tr>
Expand Down

0 comments on commit 58576a6

Please sign in to comment.