Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31325
Modified Files:
serendipity_admin_plugins.inc.php
Log Message:
Added a confirmation to inform the user that plugin settings have been
saved. admin_plugins now has a variable $statusMsg that can be filled
with whatever needs to be said at the bottom of the page (a confirmation
for example)...
Did I mention that admin_plugins is a total mess? Damn... :) Also a lot
of the language files are not even half-translated.
Index: serendipity_admin_plugins.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_plugins.inc.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- serendipity_admin_plugins.inc.php 1 Jul 2004 17:30:34 -0000 1.33
+++ serendipity_admin_plugins.inc.php 8 Jul 2004 20:59:48 -0000 1.34
@@ -318,6 +318,7 @@
}
$plugin->cleanup();
+ $statusMsg = sprintf(SETTINGS_SAVED_AT, strftime('%T'));
}
?>
<form method="post" name="serendipityPluginConfigure">
@@ -497,6 +498,7 @@
</div>
</form>
<?php
+echo $statusMsg;
} else {
/* show general plugin list */
|