Changeset 613


Ignore:
Timestamp:
Nov 27, 2013, 10:48:31 AM (11 years ago)
Author:
maron
Message:
  • Fixed: Some bugs in Comparison.php
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/Comparison.php

    r579 r613  
    5252                        if((array_key_exists('ID1', $_GET)) and ($_GET['ID1'] <> -1))  //porovnání pouze 2 textů
    5353                        {
    54                                 $TextID1 = $_GET['ID1'];
     54                                $TextID1 = $_GET['ID1'];   
    5555                                $TextID2 = $_GET['ID2'];
    56                                 $WhereID = ' AND ((`'.$Table.'`.`ID` = '.$TextID1.') OR (`'.$Table.'`.`ID` = '.$TextID2.') OR (`'.$Table.'`.`Language` = '.$this->System->Config['OriginalLanguage'].'))';
     56                                $WhereID = ' AND ((`'.$Table.'`.`ID` = '.$TextID1.') OR (`'.$Table.'`.`ID` = '.$TextID2.'))';
    5757                        } else $WhereID = '';
    5858       
     
    9292                        foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem)
    9393                        {
    94                                 if($Line[0][$TextItem['Column']] <> '')
     94                          $writethis = false;
     95                                for($i = 0; $i < count($Line); $i++)
     96                                {
     97                                  if($Line[$i][$TextItem['Column']] <> '') $writethis = true;
     98                                }
     99                                if($writethis)
    95100                                {
    96101                                        $Output .= '<tr><th>'.$TextItem['Name'].'</th>';
     
    100105                                                {
    101106                                                  $Output .= '<td>';
    102                                                   $Output .= str_replace("\n", '<br/>', $this->CompareString($Line[$i][$TextItem['Column']],$Line[$i - 1][$TextItem['Column']]));
     107                                                  $Output .= str_replace("\n", '<br/>', $this->CompareString(htmlspecialchars($Line[$i][$TextItem['Column']]),htmlspecialchars($Line[$i - 1][$TextItem['Column']])));
    103108                                                  $Output .= '</td>';
    104                                           } else $Output .= '<td>'.$Line[$i][$TextItem['Column']].'</td>';
     109                                          } else $Output .= '<td>'.htmlspecialchars($Line[$i][$TextItem['Column']]).'</td>';
    105110                                  }
    106111                                  $Output .= '</tr>';
  • trunk/Modules/Translation/Form.php

    r609 r613  
    101101                                         
    102102                                        $DbResult = $this->Database->query('SELECT COUNT(*) FROM `'.$Table.'` WHERE '.
    103                                                 '(`Entry` = '.$Line['Entry'].') AND (`Language` <> '.$this->System->Config['OriginalLanguage'].') AND (`Complete` = 1)');
     103                                                '(`Entry` = '.$Line['Entry'].')');
    104104                                        $Version = $DbResult->fetch_row();
    105105                                        $Version = $Version[0];
  • trunk/includes/Version.php

    r611 r613  
    66// and system will need database update.
    77
    8 $Revision = 611; // Subversion revision
     8$Revision = 613; // Subversion revision
    99$DatabaseRevision = 610; // Database structure revision
    10 $ReleaseTime = '2013-11-26';
     10$ReleaseTime = '2013-11-27';
Note: See TracChangeset for help on using the changeset viewer.