Changeset 595


Ignore:
Timestamp:
Nov 22, 2013, 2:01:17 AM (11 years ago)
Author:
maron
Message:

Při vyhledávání zobrazovat pouze skupiny u kterých byl výraz nalezen.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Search/Search.php

    r586 r595  
    5757                        $DbResult = $this->Database->query($sql);
    5858                        $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='.
    6061                          $Group['Id'].'&amp;user=0&amp;state=0&amp;text='.$SearchHTML.'&amp;entry=').'">'.
    6162                          $Group['Name'].'</a></td><td>'.$Line[0].'</td></tr>';
  • trunk/Modules/Translation/TranslationList.php

    r586 r595  
    255255                                $ID = $this->Database->query('SELECT COUNT(*) FROM `'.$Group['TablePrefix'].'` AS `T` WHERE 1 '.$Filter['SQL']);
    256256                                $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>';
    258259                                $Total += $Line[0];
    259260                        }
  • trunk/includes/Version.php

    r594 r595  
    11<?php
    22
    3 $Revision = 592; // Subversion revision
     3$Revision = 593; // Subversion revision
    44$DatabaseRevision = 585; // Database structure revision
    55$ReleaseTime = '2013-11-22';
Note: See TracChangeset for help on using the changeset viewer.