Ignore:
Timestamp:
Jun 19, 2009, 7:57:35 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Kontrola id skupiny překladů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/TranslationList.php

    r206 r207  
    66
    77$TranslationItemPerPage = 200;
    8 
    9 if(array_key_exists('group', $_GET)) $GroupId = $_GET['group']; else $GroupId = 1;
     8if(array_key_exists('group', $_GET)) $GroupId = $_GET['group'] * 1; else $GroupId = 1;
     9if(($GroupId < 1) or ($GroupId > count($TranslationTree)))
     10{
     11  echo('Neexistující id překladové skupiny.');
     12  ShowFooter();
     13  die();
     14}
    1015$Table = $TranslationTree[$GroupId]['TablePrefix'];
    1116if(array_key_exists('action', $_GET)) $Action = $_GET['action']; else $Action = '';
Note: See TracChangeset for help on using the changeset viewer.