BUGFIX Fixed undefined class HTTPRequest, replacing it with SS_HTTPRequest as the class was renamed

This commit is contained in:
sharvey 2010-05-04 05:37:07 +00:00
parent 8d99fa75f2
commit 20842ce5fe
1 changed files with 1 additions and 2 deletions

View File

@ -145,9 +145,8 @@ class GoogleSitemap extends Controller {
// But we want to still render. // But we want to still render.
return array(); return array();
} else { } else {
return new HTTPResponse('Not allowed', 405); return new SS_HTTPResponse('Not allowed', 405);
} }
} }
public static function enable() { public static function enable() {