Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3789/include/admin
Modified Files:
upgrader.inc.php
Log Message:
* since 'nosave' vars are no longer stored in the DB, we need to remove them from the DB or problems arise that you can't change a config value. (see mailinglist)
* fixed remaining spelling mistake :)
Index: upgrader.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/upgrader.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- upgrader.inc.php 30 Nov 2004 07:50:42 -0000 1.5
+++ upgrader.inc.php 10 Dec 2004 10:59:06 -0000 1.6
@@ -103,6 +103,10 @@
'title' => 'Update of .htaccess file',
'desc' => 'In order to implement the new administration, changes were made to the .htaccess file, you need to regenerate it'),
+ array('version' => '0.8-alpha7',
+ 'function' => 'serendipity_removeObsoleteVars',
+ 'title' => 'Removal of obsolete configuration variables',
+ 'desc' => 'Because of the new configuration parsing methods, some database variables are now only stored in serendipity_config_local.inc.php. Those obsolete variables will be removed from the database'),
);
/* Fetch SQL files which needs to be run */
|