Page 1 of 1

[Rumble 5.1.3] Missing closing header tag

Posted: Sat Oct 22, 2011 4:06 pm
by Vhex
This doesn't really effect much since the HTML interpreter gets around it, but on the Lib:4e token under the Equipment macros, the macro MWL-Contents is missing a </head> tag. At the very top of this macro the code reads:

Code: Select all

<html>
<head>
<link rel='stylesheet' type='text/css' href='libraryCSS@[r:getMacroLocation()]'></link>
<body bgcolor='white'>
When it should read:

Code: Select all

<html>
	<head>
		<link rel='stylesheet' type='text/css' href='libraryCSS@[r:getMacroLocation()]'></link>
	</head>
	<body bgcolor='white'>
I haven't noticed an effect from it (everything still works) so it's pretty minor, but it can cause problems depending on the HTML interpreter so I thought I'd mention it.