Changeset 420 for trunk/form.php
- Timestamp:
- Apr 7, 2010, 10:42:01 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form.php
r393 r420 3 3 include('includes/global.php'); 4 4 5 function ColorNames($Text,$names) { 6 7 // $buff[] = array($Line['ID'],GetIDbyName($Table),$Line[$Column],$Line['Tran']); 5 function ColorNames($Text, $names) 6 { 7 8 // $buff[] = array($Line['ID'],GetIDbyName($Table),$Line[$Column],$Line['Tran']); 8 9 foreach($names as $Line) { 9 10 11 12 10 if ($Line[3] <> '') { 11 $Text = str_replace($Line[2],'<span Title="Byl nalezen překlad: '.$Line[3].'" class="edit">'.$Line[2].'</span>',$Text); 12 $Text = str_replace(strtolower($Line[2]),'<span Title="Byl nalezen překlad: '.$Line[3].'" class="edit">'.$Line[2].'</span>',$Text); 13 } else { 13 14 $Text = str_replace($Line[2],'<span Title="Jméno bylo nalezeno v názvech a můžete ho přeložit. Začnete kliknutím na: Vyhledat v názvech" class="edit">'.$Line[2].'</span>',$Text); 14 15 $Text = str_replace(strtolower($Line[2]),'<span Title="Jméno bylo nalezeno v názvech a můžete ho přeložit. Začnete kliknutím na: Vyhledat v názvech" class="edit">'.$Line[2].'</span>',$Text); 15 16 } 16 17 } 17 18 return $Text; 18 19 } 19 20 … … 22 23 $GroupId = LoadGroupIdParameter(); 23 24 $Table = $TranslationTree[$GroupId]['TablePrefix']; 24 if(array_key_exists('action', $_GET)) $Action = $_GET['action']; else $Action = ''; 25 if(array_key_exists('action', $_GET)) $Action = $_GET['action']; 26 else $Action = ''; 25 27 26 28 if(array_key_exists('ID', $_GET)) … … 30 32 $DbResult = $Database->SQLCommand('SELECT * FROM `'.$Table.'` WHERE `ID` = '.$TextID); 31 33 $Line = mysql_fetch_assoc($DbResult); 32 if(!$Line) die('Překlad nenalezen.');34 if(!$Line) ErrorMessage('Překlad nenalezen.'); 33 35 34 36 $DbResult = $Database->SQLCommand('SELECT * FROM `'.$Table.'` WHERE `Language` = 0 AND `Entry` = '.$Line['Entry'].' AND `VersionEnd` = '.$Line['VersionEnd'].' LIMIT 1'); 35 37 $LineAJ = mysql_fetch_assoc($DbResult); 36 if(!$Line) die('Anglický originál k překladu nenalezen.');38 if(!$Line) ErrorMessage('Anglický originál k překladu nenalezen.'); 37 39 38 40 $IDUser = $Database->SQLCommand('SELECT * FROM `User` WHERE `ID` = '.$Line['User']);
Note:
See TracChangeset
for help on using the changeset viewer.