Last modified: 2007-11-01 17:57:43 UTC
When you edit anypage we have the following message error : Fatal error: Call to a member function getNamespace() on a non-object in /var/www/wiki/extensions/Translate/TranslateEditAddons.php on line 5 In line 5 in TranslateEditAddons.php we read : if( $object->mTitle->getNamespace() == NS_MEDIAWIKI ) { $object->editFormTextTop .= self::editBoxes( $object ); //$object->editFormTextTop .= self::messageFormat( $object );
This bug is due to r27091 which removes the mTitle property from EditPage.
Created attachment 4297 [details] Correcting bug. I've changing mTitle by dbTible and it seems that runs.
This might not be commited as r27091 is probably going to be reverted, although if it isn't this will be an acceptable patch - however I believe the extension author has already fixed his code and is just waiting until he knows if he needs to commit it or not. Thanks regardless.
Resolved in r27116.