Merge branch 'master' of git://github.com/ThePixelDeveloper/kohana

This commit is contained in:
Woody Gilk 2009-06-14 17:21:45 -05:00
commit 5f76ffe51e

View file

@ -130,6 +130,31 @@
<p id="results" class="pass"> Your environment passed all requirements.<br />
Remove or rename the <code>install<?php echo EXT ?></code> file now.</p>
<?php endif ?>
<h1>Optional Tests</h1>
<p>
The following extensions are not required to run the Kohana core, but if enabled can provide access to additional classes.
</p>
<table cellspacing="0">
<tr>
<th>cURL Enabled</th>
<?php if (extension_loaded('curl')): ?>
<td class="pass">Pass</td>
<?php else: ?>
<td class="fail">Kohana requires cURL to use the remote helper.</td>
<?php endif ?>
</tr>
<tr>
<th>Multibyte Enabled</th>
<?php if (extension_loaded('mbstring')): ?>
<td class="pass">Pass</td>
<?php else: ?>
<td class="fail">Kohana can perform UTF8 actions faster when mbstring is enabled.</td>
<?php endif ?>
</tr>
</table>
</body>
</html>