[17:14:51] petan: ping; about the github-pullrequest [18:02:52] se4598 hi [18:02:59] hi [18:03:17] there was a line changing something for all wikis [18:03:35] you changed it so that it changes stuff for 3 wikis only, are you sure other dont need it [18:04:43] first of all, As far as I see a lot of code in this file switches for this 3 wikis [18:05:30] I haven't coded in VB, so correct my if I'm wrong: ' Links &= "" ' does nothing [18:05:39] so then it would ony change it for enwiki [18:06:12] you removed Return Links & "" [18:06:28] and as far as i see this span got only openend on enwiki by that switch before, so why should it be closed for every wiki? [18:06:31] which is equal of return Links + "" ; in c++ [18:06:56] and you replaced it with code that works for 3 wikis only... [18:07:08] that means the other wikis would never get that "" tah [18:07:14] *tag [18:07:45] ok, if that span is opened only for enwiki, then it is correct to close it only for enwiki [18:07:55] petan: btw, is this line even do something: Case "es.wikipedia", "de.wikipedia" : Links &= "" [18:08:10] this line makes no sense to me Case "es.wikipedia", "de.wikipedia" : Links &= "" [18:08:22] no it doesnt do anything at all [18:08:34] if you need to close it for enwiki only, you should do: [18:08:51] petan: It's the eqivalent to line 309: Case "es.wikipedia", "de.wikipedia" : Links = "" [18:09:07] which doesn't make anything because of line 305 [18:09:09] if Config.Project ="e.wikipedia" then [18:09:19] Return Links &= "" [18:09:24] end if [18:09:38] Links = "" makes sense [18:09:45] Links &= "" doesnt [18:10:10] petan: Even if you declare it some line above as: Dim Links As String = "" [18:10:15] ? [18:10:52] I dont really know history of this block :/ maybe it was used for something in past [18:11:32] I don't know it either, so i just copied the exiting logic [18:26:46] petan: https://github.com/se4598/huggle/commit/d4dbee3cfe1cf36ca2a0154f2e00b367567eb4a4 [18:27:00] as followup, could be pulled, too [18:28:30] [02huggle] 07benapetr pushed 033 commits to 03master [+0/-0/±3] 13http://git.io/vvWa3g [18:28:31] [02huggle] 07se4598 038c6f38a - only close span-tag if it had been opened [18:28:32] [02huggle] 07se4598 03d4dbee3 - removed useless code leaving select-case statement for easy extending for other projects [18:28:33] [02huggle] 07benapetr 03395ae3b - Merge pull request #2 from se4598/master fix generated report-text [18:33:26] thanks :) [18:47:39] yw