Htmls set by players should not contain any tags.
This commit is contained in:
@ -123,7 +123,8 @@ public class Post
|
||||
return "";
|
||||
}
|
||||
|
||||
return _postText;
|
||||
// Returns text without tags.
|
||||
return _postText.replaceAll("<.*?>", "");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1245,7 +1245,8 @@ public class Clan implements IIdentifiable, INamable
|
||||
return "";
|
||||
}
|
||||
|
||||
return _notice;
|
||||
// Returns text without tags.
|
||||
return _notice.replaceAll("<.*?>", "");
|
||||
}
|
||||
|
||||
private void restoreSkills()
|
||||
|
Reference in New Issue
Block a user