RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Malformed XML Documentation

Ohms_Law

Wanderer
Malformed XML Documentation

There's an XML comment in Items.cs that is malformed, line 1106, svn 187. the ampersand character (&) can't be used in XML.
original:
Code:
		/// <summary>
		/// Overridable. Adds the "Locked Down & Secure" property to the given <see cref="ObjectPropertyList" />.
		/// </summary>
		public virtual void AddSecureProperty( ObjectPropertyList list )
		{
			list.Add( 501644 ); // locked down & secure
		}

corrected:
Code:
		/// <summary>
		/// Overridable. Adds the "Locked Down &amp; Secure" property to the given <see cref="ObjectPropertyList" />.
		/// </summary>
		public virtual void AddSecureProperty( ObjectPropertyList list )
		{
			list.Add( 501644 ); // locked down & secure
		}
 
Top