Changeset 595
- Timestamp:
- Nov 22, 2013, 2:01:17 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Search/Search.php
r586 r595 57 57 $DbResult = $this->Database->query($sql); 58 58 $Line = $DbResult->fetch_row(); 59 $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='. 59 if ($Line[0] <> '0') 60 $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='. 60 61 $Group['Id'].'&user=0&state=0&text='.$SearchHTML.'&entry=').'">'. 61 62 $Group['Name'].'</a></td><td>'.$Line[0].'</td></tr>'; -
trunk/Modules/Translation/TranslationList.php
r586 r595 255 255 $ID = $this->Database->query('SELECT COUNT(*) FROM `'.$Group['TablePrefix'].'` AS `T` WHERE 1 '.$Filter['SQL']); 256 256 $Line = $ID->fetch_row(); 257 $Output .= '<tr><td><a href="?group='.$Group['Id'].'">'.$Group['Name'].'</td><td>'.$Line[0].'</a></tr>'; 257 if ($Line[0] <> '0') 258 $Output .= '<tr><td><a href="?group='.$Group['Id'].'">'.$Group['Name'].'</td><td>'.$Line[0].'</a></tr>'; 258 259 $Total += $Line[0]; 259 260 } -
trunk/includes/Version.php
r594 r595 1 1 <?php 2 2 3 $Revision = 59 2; // Subversion revision3 $Revision = 593; // Subversion revision 4 4 $DatabaseRevision = 585; // Database structure revision 5 5 $ReleaseTime = '2013-11-22';
Note:
See TracChangeset
for help on using the changeset viewer.