Wait, never mind, revert that. This is supposed to be DB keys . . .

This commit is contained in:
Aryeh Gregor 2008-03-20 17:07:07 +00:00
parent 6a300fabcf
commit 95682c75b8

View file

@ -50,7 +50,7 @@ abstract class CategoryListBase {
* @return mixed Normalized name, or false if the name was invalid.
*/
private static function setNamesCallback( $name ) {
$title = Title::makeTitleSafe( NS_CATEGORY, $name );
$title = Title::newFromText( "Category:$name" );
if( !is_object( $title ) ) {
return false;
}