BUGFIX Fixed wrong reference in RequirementsBackend::unblock_all() (see #3587)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73749 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-03-29 01:31:44 +00:00
parent e0b4a1a837
commit 496ada9c9d

View File

@ -513,8 +513,8 @@ class Requirements_Backend {
/**
* Removes all items from the blocking-list.
*/
static function unblock_all() {
self::backend()->blocked = array();
function unblock_all() {
$this->blocked = array();
}
/**