Add ctype check to install.php, even though it is enabled by default since PHP 4.2, fixes #2948

This commit is contained in:
Woody Gilk 2010-06-22 22:47:28 -05:00
parent 54cd7708b6
commit a0c66f4fa3

View file

@ -131,6 +131,14 @@
<?php endif ?>
</tr>
<?php endif ?>
<tr>
<th>Character Type (CTYPE) Extension</th>
<?php if ( ! function_exists('ctype_digit')): $failed = TRUE ?>
<td class="fail">The <a href="http://php.net/ctype">ctype</a> extension is not enabled.</td>
<?php else: ?>
<td class="pass">Pass</td>
<?php endif ?>
</tr>
<tr>
<th>URI Determination</th>
<?php if (isset($_SERVER['REQUEST_URI']) OR isset($_SERVER['PHP_SELF']) OR isset($_SERVER['PATH_INFO'])): ?>