Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8041
Modified Files:
Tag: branch-smarty
NEWS compat.php serendipity_admin_installer.inc.php
Log Message:
MFH
Index: serendipity_admin_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_installer.inc.php,v
retrieving revision 1.77
retrieving revision 1.77.2.1
diff -u -d -r1.77 -r1.77.2.1
--- serendipity_admin_installer.inc.php 30 Aug 2004 09:13:58 -0000 1.77
+++ serendipity_admin_installer.inc.php 22 Sep 2004 11:34:03 -0000 1.77.2.1
@@ -102,9 +102,9 @@
printf(ATTEMPT_WRITE_FILE, $serendipity_core . '.htaccess');
$res = serendipity_installFiles($serendipity_core);
if (is_array($res)) {
- echo implode('<br />'. $res);
+ echo implode('<br />', $res);
} else {
- echo DONE .'<br />';
+ echo DONE . '<br />';
}
}
echo '<br /><strong>'. WRITTEN_N_SAVED .'</strong>';
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.214.2.19
retrieving revision 1.214.2.20
diff -u -d -r1.214.2.19 -r1.214.2.20
--- NEWS 22 Sep 2004 10:58:56 -0000 1.214.2.19
+++ NEWS 22 Sep 2004 11:34:02 -0000 1.214.2.20
@@ -26,7 +26,16 @@
* Added support for Smarty Templating. (garvinhicking, tomsommer)
-Version 0.7-beta3 ()
+Version 0.7 ()
+------------------------------------------------------------------------
+
+ * Fixed wrong implode() arguments for error reporting in installer
+ (garvinhicking)
+
+ * Fixed wrong implode() arguments for error reporting in installer
+ (garvinhicking)
+
+Version 0.7-beta3 (September 21st, 2004)
------------------------------------------------------------------------
* Bug #1031444 - Fixed postgreSQL error (for older versions of
Index: compat.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/compat.php,v
retrieving revision 1.18.2.1
retrieving revision 1.18.2.2
diff -u -d -r1.18.2.1 -r1.18.2.2
--- compat.php 16 Sep 2004 18:07:44 -0000 1.18.2.1
+++ compat.php 22 Sep 2004 11:34:03 -0000 1.18.2.2
@@ -91,7 +91,7 @@
array_walk($_COOKIE, 'serendipity_strip_quotes');
}
- if (@count($_FILES) && strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
+ if (@count($_FILES) && strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') {
array_walk($_FILES, 'serendipity_strip_quotes');
}
}
|