Changeset 209 for quests/ListQuests.php
- Timestamp:
- Jan 11, 2008, 10:51:28 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quests/ListQuests.php
r207 r209 25 25 // (SELECT quests.entry FROM quests WHERE quests.Language = '1' AND state = '2') LIMIT $limitx,$limity"); 26 26 while ($Line = mysql_fetch_array($ID)) { 27 $LineTranslate = mysql_fetch_array($Database->SQLCommand("SELECT * FROM quests WHERE Language <> 0 AND entry = '".$Line['entry']."'")); 28 if (!$LineTranslate) 27 29 echo '<a href="form.php?ID='.$Line['ID'].'">['.$Line['entry'].']</a> - '.$Line['Title'].'<br />'; //.$Line['Title'] 28 30 } 29 31 30 32 } else { 31 if(array_key_exists('mydevelop', $_GET) ) {33 if(array_key_exists('mydevelop', $_GET) and Licence(0)) { 32 34 33 35 echo '<table border="1" cellpadding="2" cellspacing="0"> … … 41 43 echo '</table>'; 42 44 } else { 43 if(array_key_exists('my', $_GET) ) {45 if(array_key_exists('my', $_GET) and Licence(0)) { 44 46 45 47 echo '<table border="1" cellpadding="2" cellspacing="0"> … … 54 56 echo '</table>'; 55 57 } else { 58 } 59 } 60 } 61 62 if(array_key_exists('selection', $_GET)) { 56 63 57 64 for ($i=0; $i<30; ++$i) { … … 64 71 // echo '<a href="ListQuests.php?limitx=3500&limity=4000">3500-4000</a><br />'; 65 72 } 66 } 67 } 73 68 74 } 69 75
Note:
See TracChangeset
for help on using the changeset viewer.