On Mar 25, 2005, at 12:12pm, John Blumel wrote:
I noticed that the 'othercontribs' info isn't showing up in v1.4.0.
I don't know if this is the correct place to report this but, hopefully, it will get noticed...
It seems that this problem is due to an error in the WHERE clause of the SELECT statement assembled in the getContributers() function inside Article.php. The code, as it exists in v1.4.0, is:
function getContributors($limit = 0, $offset = 0) { [...] WHERE old_namespace = $user [...] }
However, it should be:
function getContributors($limit = 0, $offset = 0) { [...] WHERE old_namespace = $ns [...] }
John Blumel