BUGFIX: disable function re-enabled

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@101792 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Geoff Munn 2010-03-29 02:45:19 +00:00 committed by Sam Minnee
parent e05f70102c
commit deaa1d675e

View File

@ -57,6 +57,13 @@ class ContentNegotiator {
static function enable() {
self::$enabled = true;
}
/*
* Disable content negotiation for all templates, not just those with the xml header.
*/
static function disable() {
self::$enabled = false;
}
/**
* Returns true if negotation is enabled for the given response.