Changeset 469 for trunk/index.php
- Timestamp:
- Apr 20, 2010, 7:16:40 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r464 r469 29 29 30 30 $Count = 40; 31 $Output = '<strong>Poslední překlady:</strong><div class="NewsBox">'; 31 $Output = '<strong>Poslední překlady:</strong>'; 32 //'<div class="NewsBox">'; 32 33 33 34 $GroupListQuery = 'SELECT `Group`.* FROM `Group`'; … … 47 48 //echo($System->Database->error); 48 49 //echo($Query); 50 $Output .= '<table class="MiniTable"><tr><th>Datum</th><th>Kdo</th><th>Nový</th><th>Zdroj</th><th>Skupina</th></tr>'; 49 51 while($DbRow = $DbResult->fetch_assoc()) 50 52 { 51 $Output .= '<strong>'.HumanDate($DbRow['ModifyTime']).' '.$DbRow['UserName'].'</strong> přeložil text <a href="form.php?group='.$DbRow['Group'].'&ID='.$DbRow['ID'].'">'.$DbRow['ID'].'</a> převzatý z textu <a href="form.php?group='.$DbRow['Group'].'&ID='.$DbRow['Take'].'">'.$DbRow['Take'].'</a> ve skupině <a href="TranslationList.php?group='.$DbRow['Group'].'&action=filter">'.$DbRow['GroupName'].'</a><br />'; 53 $Output .= '<tr><td>'.HumanDate($DbRow['ModifyTime']).'</td>'. 54 '<td>'.$DbRow['UserName'].'</td>'. 55 '<td><a href="form.php?group='.$DbRow['Group'].'&ID='.$DbRow['ID'].'">'.$DbRow['ID'].'</a></td>'. 56 '<td><a href="form.php?group='.$DbRow['Group'].'&ID='.$DbRow['Take'].'">'.$DbRow['Take'].'</a></td>'. 57 '<td><a href="TranslationList.php?group='.$DbRow['Group'].'&action=filter">'.$DbRow['GroupName'].'</a></td></tr>'; 52 58 } 59 $Output .= '</table>'; 53 60 return($Output); 54 61 } … … 175 182 176 183 echo('<br />'. 177 '<table class="Home"><tr><td colspan="2">'.$Welcome. 178 '</td></tr><tr><td>'.ShowLastTranslated().'</td><td class="news-box">'.ShowNews().'</td></tr></table>'); 184 '<table class="Home"><tr><td colspan="3">'.$Welcome. 185 '</td></tr>'. 186 '<tr><td>'.ShowLastTranslated().'</td>'. 187 '<td class="news-box">'.ShowNews().'</td>'. 188 '<td>'.ShowShoutBox().'</td>'. 189 '</tr></table>'); 179 190 180 191 ShowFooter();
Note:
See TracChangeset
for help on using the changeset viewer.