Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26230/include
Modified Files:
functions_installer.inc.php
Log Message:
- Move the page where you change your details, out of the configuration and into its own menuitem and page
Index: functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_installer.inc.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- functions_installer.inc.php 30 Nov 2004 07:50:42 -0000 1.7
+++ functions_installer.inc.php 30 Nov 2004 20:30:06 -0000 1.8
@@ -716,19 +716,6 @@
);
}
- // Save all user-relevant data in the usertable. Only when s9y is installed.
- if (IS_installed === true) {
- $u = serendipity_parseTemplate(S9Y_CONFIG_USERTEMPLATE, true);
- foreach($u AS $key => $entry) {
- serendipity_set_user_var(
- $entry['name'],
- $_POST[$entry['name']],
-
- ($entry['range'] == 'global' ? 0 : $serendipity['authorid'])
- );
- }
- }
-
if (IS_installed === false || $serendipity['serendipityUserlevel'] >= USERLEVEL_ADMIN) {
return serendipity_updateLocalConfig($_POST['dbName'],
$_POST['dbPrefix'],
|