MyBB Community Forums

Full Version: global_page_table help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can anyone give me the code for the global_page_table template because i accedentaly over wrote it. Oops Sad . It hasnt seemed to change anything though?
Here ya go.

<html>
	<head>
<title>{$mybb->settings[bbname]} - {$pageInfo[title]}</title>
{$headerinclude}
</head>
<body>
	{$header}
	<table border="0" cellspacing="{$theme[borderwidth]}" cellpadding="{$theme[tablespace]}" class="tborder" style="clear: both;">
		<tr>
			<td class="thead"><strong>{$pageInfo[title]}</strong></td>
		</tr>
		<tr>
			<td class="trow1">
{$pageInfo[content]}
</td>
</tr>
</table>
	{$footer}
</body>
</html>

Fishntassie...
Cheers.