Fix $bSilent parameter for comment::delete() to be 'true', which makes the deletion silent.

Fixes previous commit.
This commit is contained in:
Chris Morgan
2007-08-24 02:54:07 +00:00
committed by WineHQ
parent 9e05efb1b6
commit 156312f16f

View File

@@ -259,7 +259,7 @@ class version {
// delete the comment silently, we don't want to send out // delete the comment silently, we don't want to send out
// any notifications since the version is being deleted // any notifications since the version is being deleted
$oComment->delete(false); $oComment->delete(true);
} }