Преглед изворни кода

[fixed] remove invalid HTML <border> tag

Remove invalid HTMLs tag from `clothing_QV.qsrc`

The `<border=...>` isn't a valid HTML tag, which causes an error when trying to use qspider.

I think this might instead mean `<table border=1>`
(see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table#attr-border),
but it seems like this will only make it 1pixel large,
so removing it shouldn't make any difference.
ayasaplayer пре 1 година
родитељ
комит
5332bed19b
1 измењених фајлова са 6 додато и 6 уклоњено
  1. 6 6
      locations/clothing_QV.qsrc

+ 6 - 6
locations/clothing_QV.qsrc

@@ -1541,10 +1541,10 @@ if $ARGS[0] = 'filter_header':
 	$Headerstring[3] += '<TH>Only show</TH>'
 
 	'<center><table><<$Headerstring[2]>>'
-	'<TR><border=1><<$Headerstring>>'
+	'<TR><<$Headerstring>>'
 
-	'<TR><border=0><<$Headerstring[3]>>'
-	'<TR><border=1><<$Headerstring[1]>></table></center>'
+	'<TR><<$Headerstring[3]>>'
+	'<TR><<$Headerstring[1]>></table></center>'
 end
 
 if $ARGS[0] = 'clo_filter':
@@ -1761,10 +1761,10 @@ if $ARGS[0] = 'shop_filter_header':
 	$Headerstring[3] = '<TH></TH><TH></TH><TH></TH><TH>Only show</TH>'
 
 	'<center><table><<$Headerstring[2]>>'
-	'<TR><border=1><<$Headerstring>>'
+	'<TR><<$Headerstring>>'
 
-	'<TR><border=0><<$Headerstring[3]>>'
-	'<TR><border=1><<$Headerstring[1]>></table></center>'
+	'<TR><<$Headerstring[3]>>'
+	'<TR><<$Headerstring[1]>></table></center>'
 end
 
 if $ARGS[0] = 'shop_filter':