Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16974/include/admin
Modified Files:
installer.inc.php
Log Message:
* Somehow my commit to plugin API from yesterday didn't make it, so
the optimizations where missing. Now they're in. (That's why I couldn't
reproduce the smarty calendar issue on my installation...)
* Empty nuggets can have empty title again
* Somehow the way of parsing/printing the config template changed and
Rewrite Autodetection got lost. Now moved that autodecetion to
query_default function where it makes much more sense (and works again)
* Fixed bad tabs instead of spaces, fixed indentation.
Index: installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/installer.inc.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- installer.inc.php 19 Nov 2004 11:05:32 -0000 1.2
+++ installer.inc.php 20 Nov 2004 12:21:40 -0000 1.3
@@ -33,7 +33,7 @@
if (is_array($res)) {
echo DIAGNOSTIC_ERROR . '<br /><br />';
echo '<span class="serendipity_msg_important">- ' . implode('<br />', $res) . '</span><br /><br />';
- serendipity_printConfigTemplate(serendipity_parseTemplate(S9Y_CONFIG_TEMPLATE), $_POST, false, true, true);
+ serendipity_printConfigTemplate(serendipity_parseTemplate(S9Y_CONFIG_TEMPLATE), $_POST, false, true);
die();
}
@@ -133,8 +133,8 @@
$t = serendipity_parseTemplate(S9Y_CONFIG_USERTEMPLATE, false, $t);
}
- serendipity_printConfigTemplate($t, $from, false, true, IS_installed);
+ serendipity_printConfigTemplate($t, $from, false, true);
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
\ No newline at end of file
+?>
|