* Fix string literal with URL + LLcommand();

* Added 'detected around: value' when a x.Y detect occurs to help debug.
* Fixed object text is too long to store to the database (wikilith)
This commit is contained in:
Teravus Ovares
2008-05-29 16:21:41 +00:00
parent d7ec686691
commit 83bd85ce7f
3 changed files with 22 additions and 7 deletions

View File

@@ -270,7 +270,14 @@ namespace OpenSim.Region.Environment.Scenes
public string Text
{
get { return m_rootPart.Text; }
get {
string returnstr = m_rootPart.Text;
if (returnstr.Length > 255)
{
returnstr = returnstr.Substring(0, 255);
}
return returnstr;
}
set { m_rootPart.Text = value; }
}