Skip to content

Commit df9c8c2

Browse files
committed
some style unification
svn path=/branches/compat/; revision=522
1 parent c1cbce3 commit df9c8c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/view/HTML_Home.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected function body( )
7575
echo '
7676
<tr class="row'.($x%2+1).'">
7777
<td class="first '.($entry['works'] == 'full' ? 'stable' : ($entry['works'] == 'part' ? 'unstable' : 'crash')).'">&nbsp;</td>
78-
<td><a href="?show=version&amp;id='.$entry['version_id'].'">'.htmlentities($entry['name']).'</a> '.htmlentities($entry['version']).'</td>
78+
<td><a href="?show=version&amp;id='.$entry['version_id'].'">'.htmlentities($entry['name']).'</a> <small style="color: gray;">'.htmlentities($entry['version']).'</small></td>
7979
<td>'.CUser::getName($entry['user_id']).'</td>
8080
<td style="text-align: center;white-space:nowrap;">'.$entry['created'].'</td>
8181
</tr>';

lib/view/HTML_List.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ protected function body ()
141141
// just one version stored
142142
if (count($versions) == 1) {
143143
echo '
144-
<a href="?show=version&amp;id='.$versions[0]['id'].'">'.htmlspecialchars($entry['name']).' '.$versions[0]['version'].'</a>';
144+
<a href="?show=version&amp;id='.$versions[0]['id'].'">'.htmlspecialchars($entry['name']).'</a> <small style="color: gray;">'.$versions[0]['version'].'</small>';
145145
}
146146

147147
// show all app version

0 commit comments

Comments
 (0)