Update of /cvsroot/php-blog/serendipity/include/admin/importers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10304/include/admin/importers
Modified Files:
movabletype.inc.php
Log Message:
- Merged author and admin suites
- New separated layout for Administration Suite
- Fixed lots of layout quirks, make the admin look more unified
- Fixed some invalid HTML (unclosed/excess tags)
- Remove some unneeded session_start() functions in included admin files
- Allow $plugin->get_config() to return the default value as defined in introspect_config_item, when only given one argument
- Fixed bug in upgrader, not allowing multiple upgrade functions for a single version
- Killed serendipity_printLogin() and moved it to serendipity_admin.php
- Pretty up the iframe stuff
- Added aliases to some adminModules
Index: movabletype.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/importers/movabletype.inc.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- movabletype.inc.php 19 Nov 2004 11:05:33 -0000 1.2
+++ movabletype.inc.php 27 Nov 2004 22:14:16 -0000 1.3
@@ -118,7 +118,7 @@
if ( !sizeof($tasks) || $force == true ) {
foreach ( $entries as $entry ) {
if ( !is_int($r = serendipity_updertEntry($entry)) ) {
- echo '<div class="important">' . $r . '</div>';
+ echo '<div class="serendipityAdminMsgError">' . $r . '</div>';
}
}
return true;
|