Typo in error message

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40452 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2007-08-17 23:14:30 +00:00
parent 9f78d4aa5e
commit 1d3ca74a78
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ class Controller extends ViewableData {
if($this == self::$controller_stack[0]) {
array_shift(self::$controller_stack);
} else {
user_error("popCurrent called on $this->Controller controller, but it wasn't at the top of the stack", E_USER_WARNING);
user_error("popCurrent called on $this->class controller, but it wasn't at the top of the stack", E_USER_WARNING);
}
}