1
2
3
4
5
6
7
8
9
10
11
12
13
|
{*
* committip.tpl
* gitphp: A PHP git repository browser
* Component: Commit tooltip template
*
* Copyright (C) 2010 Christopher Han <xiphux@gmail.com>
*}
<div>
{foreach from=$commit->GetComment() item=line}
{$line}<br />
{/foreach}
</div>
|