mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* 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:
@@ -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; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user