Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29402
Modified Files:
Tag: branch-smarty
serendipity_plugin_api.php
Log Message:
- Wrong return type
Index: serendipity_plugin_api.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_plugin_api.php,v
retrieving revision 1.23.2.6
retrieving revision 1.23.2.7
diff -u -d -r1.23.2.6 -r1.23.2.7
--- serendipity_plugin_api.php 17 Oct 2004 20:04:34 -0000 1.23.2.6
+++ serendipity_plugin_api.php 17 Oct 2004 20:06:50 -0000 1.23.2.7
@@ -501,11 +501,11 @@
}
/* Called by Serendipity when the plugin is removed/uninstalled.
- * Can be used to drop installed database tables
+ * Can be used to drop installed database tables etc.
*/
function uninstall(&$propbag)
{
- return false;
+ return true;
}
/* Called by serendipity when it wants to display information
|