Changeset 243 for trunk/comparison.php
- Timestamp:
- Jul 12, 2009, 12:28:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/comparison.php
r238 r243 42 42 if(array_key_exists('group', $_GET)) $GroupId = $_GET['group']; else $GroupId = 1; 43 43 $Table = $TranslationTree[$GroupId]['TablePrefix']; 44 if(array_key_exists('action', $_GET)) $Action = $_GET['action']; else $Action = '';45 44 46 45 if(array_key_exists('entry', $_GET)) … … 54 53 } else $WhereID = ''; 55 54 56 $DataID = $Database->SQLCommand('SELECT * FROM '.$Table.' Where entry = '.$Textentry. $WhereID.' ORDER BY Language');55 $DataID = $Database->SQLCommand('SELECT * FROM '.$Table.' Where entry = '.$Textentry.' '.$WhereID.' ORDER BY Language'); 57 56 $i = 0; 58 57 while($Line = mysql_fetch_assoc($DataID)) … … 111 110 for($i = 0; $i < count($Line); $i++) 112 111 { 113 if($i > 1)112 if($i > 0) 114 113 { 115 114 echo('<td>');
Note:
See TracChangeset
for help on using the changeset viewer.