Fix eFiction Base Author URLs.

This commit is contained in:
Jim Miller 2015-09-03 11:50:58 -05:00
parent 0233404429
commit 1c431cd972

View file

@ -148,7 +148,7 @@ class BaseEfictionAdapter(BaseSiteAdapter):
"""
Get the URL to a user page on this site.
"""
return "%s?sid=%s" % (self.getUrlForPhp(self.getViewUserPhpName()), userId)
return "%s?uid=%s" % (self.getUrlForPhp(self.getViewUserPhpName()), userId)
@classmethod
def getLoginUrl(self):