Changeset 207 for trunk/TranslationList.php
- Timestamp:
- Jun 19, 2009, 7:57:35 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/TranslationList.php
r206 r207 6 6 7 7 $TranslationItemPerPage = 200; 8 9 if(array_key_exists('group', $_GET)) $GroupId = $_GET['group']; else $GroupId = 1; 8 if(array_key_exists('group', $_GET)) $GroupId = $_GET['group'] * 1; else $GroupId = 1; 9 if(($GroupId < 1) or ($GroupId > count($TranslationTree))) 10 { 11 echo('Neexistující id překladové skupiny.'); 12 ShowFooter(); 13 die(); 14 } 10 15 $Table = $TranslationTree[$GroupId]['TablePrefix']; 11 16 if(array_key_exists('action', $_GET)) $Action = $_GET['action']; else $Action = '';
Note:
See TracChangeset
for help on using the changeset viewer.