Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26562
Modified Files:
NEWS serendipity_config.inc.php
Log Message:
changed 'mime' field of serendipity_images to a reasonable limit. 15 chars
was cutting entries like 'application/ms-word' to a wrong string and thus
always re-refreshing it on synchronize-database.
Postgres somehow sucks in changing columns. :(
(DB update bump to 0.6.9)
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- serendipity_config.inc.php 17 Jul 2004 12:03:06 -0000 1.86
+++ serendipity_config.inc.php 19 Jul 2004 09:31:52 -0000 1.87
@@ -14,7 +14,7 @@
}
include_once(S9Y_INCLUDE_PATH . 'compat.php');
-$serendipity['version'] = '0.6.8-CVS';
+$serendipity['version'] = '0.6.9-CVS';
$serendipity['production'] = 1;
$serendipity['rewrite'] = 'none';
$serendipity['messagestack'] = array();
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -d -r1.178 -r1.179
--- NEWS 19 Jul 2004 08:50:54 -0000 1.178
+++ NEWS 19 Jul 2004 09:31:52 -0000 1.179
@@ -3,6 +3,9 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * Changed database key 'mime' to varchar(255) instead of varchar(15)
+ (garvinhicking) [DB Layout change - > 0.6.9]
+
* New CSS classes 'serendipity_msg_notice' and
'serendipity_msg_important'. (garvinhicking)
@@ -21,7 +24,7 @@
* Added ability to moderate comments:
* Moderate from email
* Moderate and view comments from within Authoring Suite
- (tomsommer)
+ (tomsommer) [DB Layout change - > 0.6.7]
* An entries' LastModified timestamp will get updated if a comment
is made to it, but only if the article is newer than 7 days.
|