witten
/
luminotes
Archived
1
0
Fork 0

In the revision changes pulldown, no longer showing "by desktopuser" in Luminotes Desktop.

This commit is contained in:
Dan Helfman 2008-09-08 15:29:16 -07:00
parent 949778e702
commit e06579c881
1 changed files with 2 additions and 1 deletions

View File

@ -2947,7 +2947,8 @@ function Changes_pulldown( wiki, notebook_id, invoker, editor ) {
var link = createDOM(
"a",
{ "href": href, "class": "pulldown_link" },
short_revision + ( user_revision.username ? " by " + user_revision.username : "" )
short_revision + ( ( user_revision.username && user_revision.username != "desktopuser" )
? " by " + user_revision.username : "" )
);
this.links.push( link );