mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-07-06 03:50:18 -05:00
More cleanup
project renaming moved PluginImporter to SharedLibrary config writer abstracted for plugins
This commit is contained in:
@ -24,7 +24,7 @@ namespace MessageBoard
|
||||
|
||||
public Post(int id, int threadid, bool visible, string title, string content, User author, DateTime creationDate, DateTime updatedDate) : base(id, title, visible, content, 0, author, null, creationDate, updatedDate)
|
||||
{
|
||||
this.lastModificationString = SharedLibrary.Utilities.timePassed(creationDate);
|
||||
this.lastModificationString = SharedLibrary.Utilities.GetTimePassed(creationDate);
|
||||
this.threadid = threadid;
|
||||
}
|
||||
|
||||
@ -118,7 +118,7 @@ namespace MessageBoard
|
||||
this.threadCategory = threadCategory;
|
||||
this.creationDate = creationDate;
|
||||
this.updatedDate = updatedDate;
|
||||
this.lastModificationString = SharedLibrary.Utilities.timePassed(updatedDate);
|
||||
this.lastModificationString = SharedLibrary.Utilities.GetTimePassed(updatedDate);
|
||||
this.visible = visible;
|
||||
}
|
||||
|
||||
|
@ -77,7 +77,7 @@ namespace MessageBoard
|
||||
this.avatarURL = avatarURL;
|
||||
this.posts = posts;
|
||||
|
||||
this.lastLoginString = SharedLibrary.Utilities.timePassed(lastLogin);
|
||||
this.lastLoginString = SharedLibrary.Utilities.GetTimePassed(lastLogin);
|
||||
}
|
||||
|
||||
public int getID()
|
||||
|
Reference in New Issue
Block a user