Changeset 586 for trunk/img_level.php


Ignore:
Timestamp:
Oct 7, 2013, 11:52:11 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: SQL injection protection was not applied because of new dynamic URL handling.
  • Fixed: HTML entities encodin for search input string.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/img_level.php

    r553 r586  
    33require_once('includes/global.php');
    44
    5 // Nastavení
     5// Settings
    66$xp_from_word = 1;
    77$index_level = 100;
    8 $from_diakrit = 3; // zvýšené xp za slovo s diakritikou
     8$from_diakrit = 3; // higher xp for word with diacritics
    99$FontFile = 'images/FRIZQT__.ttf';
    1010
     
    9494          }
    9595        }       
    96         if($translated) $xp = $xp + $xp_translation;   // Přičítání XP za celý překlad, pokud je celý přeložený
     96        if($translated) $xp = $xp + $xp_translation;   // XP addition for entire translation if complete translated
    9797      }
    9898    }
     
    133133  while($LineTeam = $DbResult->fetch_array())
    134134  {
    135     CreateImg('team', $LineTeam['Name'], substr($LineTeam['Average'], 0, strpos($LineTeam['Average'],'.')));  //vytváření obrázku
     135    CreateImg('team', $LineTeam['Name'], substr($LineTeam['Average'], 0, strpos($LineTeam['Average'],'.')));  //image creation
    136136  }
    137137  $System->Database->query('UPDATE `User` SET `NeedUpdate` = 0');
Note: See TracChangeset for help on using the changeset viewer.