Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24928/include/admin
Modified Files:
installer.inc.php
Log Message:
- Fix broken installation on Windows (is_executable doesn't exist)
Index: installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/installer.inc.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- installer.inc.php 19 Dec 2004 23:01:48 -0000 1.14
+++ installer.inc.php 25 Dec 2004 00:37:57 -0000 1.15
@@ -353,6 +353,7 @@
?></td>
</tr>
<?php } ?>
+<?php if (function_exists('is_executable')) { ?>
<tr>
<td>Execute Imagemagick binary </td>
<td><?php
@@ -367,6 +368,7 @@
}
?></td>
</tr>
+<?php } ?>
</table>
<?php if ( $showWritableNote === true ) { ?>
|