Leave a fixme comment on context stuff

This commit is contained in:
Sam Reed 2011-10-26 04:15:54 +00:00
parent 4622da783c
commit f6300aaeae

View file

@ -164,7 +164,7 @@ class DerivativeContext extends ContextSource {
if ( $l instanceof Language ) {
$this->lang = $l;
} elseif ( is_string( $l ) ) {
$l = self::sanitizeLangCode( $l );
$l = self::sanitizeLangCode( $l ); // FIXME: Undefined method, is at RequestContext::sanitizeLangCode()
$obj = Language::factory( $l );
$this->lang = $obj;
} else {