mensamodec remove html tags

This commit is contained in:
stubbfel
2013-06-06 15:14:46 +02:00
parent 4ef5e7995b
commit 159dab18f3
2 changed files with 2 additions and 6 deletions

View File

@@ -7,12 +7,7 @@
//----------------------------------------------------------------------
namespace CampusAppWP8.Utility
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
/// <summary>
/// Class provides some special StringMethods

View File

@@ -10,6 +10,7 @@ namespace CampusAppWP8.Model.Mensa
using System;
using System.Xml.Serialization;
using CampusAppWP8.Resources;
using CampusAppWP8.Utility;
/// <summary>
/// Model for menu
@@ -185,7 +186,7 @@ namespace CampusAppWP8.Model.Mensa
{
if (value != null && !string.Empty.Equals(value) && !value.Equals(property))
{
property = value;
property = StringManager.StripHTML(value);
}
}
#endregion