Browse Source

some missed bake tag replacements

AD7six 11 years ago
parent
commit
aa88cb7999
1 changed files with 4 additions and 8 deletions
  1. 4 8
      src/Template/Bake/Template/index.ctp

+ 4 - 8
src/Template/Bake/Template/index.ctp

@@ -95,14 +95,10 @@ $fields = collection($fields)
 	</table>
 	<div class="paginator">
 		<ul class="pagination">
-		<%
-			echo "<%\n";
-			echo "\t\t\techo \$this->Paginator->prev('< ' . __('previous'));\n";
-			echo "\t\t\techo \$this->Paginator->numbers();\n";
-			echo "\t\t\techo \$this->Paginator->next(__('next') . ' >');\n";
-			echo "\t\t%>\n";
-		%>
+			<?= $this->Paginator->prev('< ' . __('previous')); ?>
+			<?= this->Paginator->numbers(); ?>
+			<?=	$this->Paginator->next(__('next') . ' >'); ?>
 		</ul>
-		<p><%= "<%= \$this->Paginator->counter() %>"; %></p>
+		<p><?= $this->Paginator->counter(); ?></p>
 	</div>
 </div>