Add BBCODE to Horse Descriptions, Player Descriptions and Ranch Descriptions.

This commit is contained in:
SilicaAndPina 2021-02-13 17:47:28 +13:00
parent bdebe4d84a
commit 72bc81d900
14 changed files with 142 additions and 40 deletions

View file

@ -217,8 +217,9 @@ namespace HISP.Player
set
{
Database.SetPlayerNotes(Id, value);
privateNotes = value;
privateNotes = value.Trim();
Database.SetPlayerNotes(Id, privateNotes);
}
}
public string ProfilePage {
@ -227,10 +228,9 @@ namespace HISP.Player
return profilePage;
}
set
{
Database.SetPlayerProfile(value, Id);
profilePage = value;
{
profilePage = value.TrimEnd();
Database.SetPlayerProfile(profilePage, Id);
}
}