Index: trunk/htdocs/cacher/cacher.tpl.php
===================================================================
--- trunk/htdocs/cacher/cacher.tpl.php	(revision 1068)
+++ trunk/htdocs/cacher/cacher.tpl.php	(revision 1071)
@@ -154,13 +154,13 @@
 		?>
 
-	<form action="" method="post">
+<form action="" method="post">
 	<table cellspacing="0" cellpadding="4" class="cycles entries">
 		<caption><?php echo _("{$cachelist['type_name']} $listname"); ?></caption>
-		<?php
-		echo "
-		<tr ", $a->next(), ">";
-		?>
-
-			<?php
+<?php
+		$class = $a->next();
+		echo <<<TR
+		<tr {$class}>
+
+TR;
 			if ($isphp) {
 				echo
@@ -209,8 +209,11 @@
 			?>
 		</tr>
-		<?php
+<?php
 		foreach ($entries as $i => $entry) {
-			echo "
-			<tr ", $a->next(), ">";
+			$class = $a->next();
+			echo <<<TR
+		<tr $class>
+
+TR;
 			$name     = htmlspecialchars($entry['name']);
 			$hits     = number_format($entry['hits']);
@@ -235,10 +238,12 @@
 				$namelink = $name;
 				echo <<<ENTRY
-				<td>{$entry['cache_name']} {$i}</td>
+			<td>{$entry['cache_name']} {$i}</td>
+
 ENTRY;
 			}
 			else {
 				echo <<<ENTRY
-					<td><label><input type="checkbox" name="remove[]" value="{$name}"/>{$entry['cache_name']} {$i}</label></td>
+			<td><label><input type="checkbox" name="remove[]" value="{$name}"/>{$entry['cache_name']} {$i}</label></td>
+
 ENTRY;
 				$uname = urlencode($entry['name']);
@@ -250,19 +255,22 @@
 			<td align="right" int="{$entry['hits']}">{$entry['hits']}</td>
 			<td align="right" int="{$entry['size']}">{$size}</td>
+
 ENTRY;
 			if ($isphp) {
 				$refcount = number_format($entry['refcount']);
 				echo <<<ENTRY
-				<td align="right" int="{$entry['refcount']}">{$entry['refcount']}</td>
-				<td align="right" int="{$entry['phprefcount']}">{$phprefcount}</td>
-				<td align="right" int="{$entry['class_cnt']}">{$class_cnt}</td>
-				<td align="right" int="{$entry['function_cnt']}">{$function_cnt}</td>
-				<td align="right" int="{$entry['file_size']}">{$file_size}</td>
-				<td align="right" int="{$entry['file_mtime']}">{$file_mtime}</td>
+			<td align="right" int="{$entry['refcount']}">{$entry['refcount']}</td>
+			<td align="right" int="{$entry['phprefcount']}">{$phprefcount}</td>
+			<td align="right" int="{$entry['class_cnt']}">{$class_cnt}</td>
+			<td align="right" int="{$entry['function_cnt']}">{$function_cnt}</td>
+			<td align="right" int="{$entry['file_size']}">{$file_size}</td>
+			<td align="right" int="{$entry['file_mtime']}">{$file_mtime}</td>
+
 ENTRY;
 				if (isset($entry['file_inode'])) {
 					echo <<<ENTRY
-					<td align="right" int="{$entry['file_device']}">{$entry['file_device']}</td>
-					<td align="right" int="{$entry['file_inode']}">{$entry['file_inode']}</td>
+			<td align="right" int="{$entry['file_device']}">{$entry['file_device']}</td>
+			<td align="right" int="{$entry['file_inode']}">{$entry['file_inode']}</td>
+
 ENTRY;
 				}
@@ -272,22 +280,24 @@
 			<td align="right" int="{$entry['atime']}">{$atime}</td>
 			<td align="right" int="{$entry['ctime']}">{$ctime}</td>
+
 ENTRY;
 			if ($listname == 'Deleted') {
-			echo <<<ENTRY
-				<td align="right" int="{$entry['dtime']}">{$dtime}</td>
-ENTRY;
-			}
-
-			echo "
+				echo <<<ENTRY
+			<td align="right" int="{$entry['dtime']}">{$dtime}</td>
+
+ENTRY;
+			}
+
+			echo <<<TR
 		</tr>
-			";
+
+TR;
 		}
 		?>
-
 	</table>
-	<?php if (!$isphp) { ?>
+<?php if (!$isphp) { ?>
 	<input type="submit" value="<?php echo _("Remove Selected"); ?>">
-	<?php } ?>
-	</form>
+<?php } ?>
+</form>
 <?php
 	}
@@ -297,9 +307,9 @@
 	if (ini_get("xcache.test")) {
 ?>
-<form method="post" action=""
-	><div
-		/><input type="submit" name="coredump" value="Test coredump" class="submit" onclick="return confirm('<?php echo $l_confirm ?>');"
-	/></div
-></form>
+<form method="post" action="">
+	<div>
+		<input type="submit" name="coredump" value="Test coredump" class="submit" onclick="return confirm('<?php echo $l_confirm ?>');" />
+	</div>
+</form>
 <?php
 	}
