Changes for issue #131

This commit is contained in:
MikeMaximus
2018-06-15 16:02:31 -06:00
parent 7eab3b8841
commit 9b9d3f9125
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -847,14 +847,14 @@ Public Class frmGameManager
End Sub
Private Sub FillTagsbyID(ByVal sID As String)
Dim hshTags As Hashtable
Dim slTags As SortedList
Dim oTag As clsTag
Dim sTags As String = String.Empty
Dim cTrim() As Char = {",", " "}
hshTags = mgrGameTags.GetTagsByGame(sID)
slTags = mgrGameTags.GetTagsByGame(sID)
For Each de As DictionaryEntry In hshTags
For Each de As DictionaryEntry In slTags
oTag = DirectCast(de.Value, clsTag)
sTags &= "#" & oTag.Name & ", "
Next