Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25730/include/admin
Modified Files:
installer.inc.php
Log Message:
- allow_url_fopen is nice to have also
Index: installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/installer.inc.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- installer.inc.php 9 Dec 2004 11:33:58 -0000 1.11
+++ installer.inc.php 9 Dec 2004 22:31:27 -0000 1.12
@@ -279,6 +279,17 @@
?></td>
</tr>
<tr>
+ <td>allow_url_fopen</td>
+ <td width="150"><strong><?php echo 'ON' ?></strong></td>
+ <td width="150"><?php
+ if ( serendipity_ini_bool(ini_get('allow_url_fopen')) ) {
+ echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, 'ON');
+ } else {
+ echo serendipity_installerResultDiagnose(S9Y_I_WARNING, 'OFF');
+ }
+ ?></td>
+ </tr>
+ <tr>
<td>file_uploads</td>
<td width="150"><strong><?php echo 'ON' ?></strong></td>
<td width="150"><?php
|