Fix function definition. (#68)

The declaration of uninstall() didn't match
serendipity_plugin::uninstall, making PHP
spew warnings to the log.

Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
Thomas Hochstein 2017-08-06 14:08:17 +02:00 committed by onli
parent 562e3d88b1
commit 2c0798670b

View file

@ -157,7 +157,7 @@ class serendipity_event_dejure extends serendipity_event
$this->setupDB();
}
function uninstall() {
function uninstall(&$bag) {
$this->dropDB();
}