Changeset 465
- Timestamp:
- Apr 15, 2010, 6:45:17 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/action.php
r460 r465 236 236 $DbResult = $System->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC '.$PageList['SQLLimit']); 237 237 while($Line = $DbResult->fetch_assoc()) 238 echo('<div><strong>'.$Line['User'].'</strong>: '. htmlspecialchars($Line['Text']).'</div>');238 echo('<div><strong>'.$Line['User'].'</strong>: '.MakeActiveLinks(htmlspecialchars($Line['Text'])).'</div>'); 239 239 echo('</div>'); 240 240 echo($PageList['Output']); -
trunk/banners.php
r462 r465 5 5 ShowPage(); 6 6 7 $Banner = '<a href=" '.$System->Link('/').'"><img src="'.$System->Link('/banners/wowpreklad_big.jpg').'" '.7 $Banner = '<a href="http://'.$System->Config['Web']['Host'].$System->Link('/').'"><img src="http://'.$System->Config['Web']['Host'].$System->Link('/banners/wowpreklad_big.jpg').'" '. 8 8 'alt="wowpreklad" title="Otevřený projekt překládání celé hry World of Warcraft" '. 9 9 'class="banner" height="60" width="468" /></a>'; 10 10 11 $BannerSmall = '<a href=" '.$System->Link('/').'"><img src="'.$System->Link('/banners/wowpreklad_small.jpg').'" '.11 $BannerSmall = '<a href="http://'.$System->Config['Web']['Host'].$System->Link('/').'"><img src="http://'.$System->Config['Web']['Host'].$System->Link('/banners/wowpreklad_small.jpg').'" '. 12 12 'alt="wowpreklad" title="Otevřený projekt překládání celé hry World of Warcraft" '. 13 13 'class="banner" height="31" width="88" /></a>'; … … 18 18 echo($BannerSmall.' <textarea rows="2" cols="30">'.htmlspecialchars($BannerSmall).'</textarea><br />'); 19 19 20 $DbResult = $System->Database->query('SELECT * FROM `Referrer` WHERE `Show`=1 AND `DateLast` > (NOW() - INTERVAL 3 MONTH) ');20 $DbResult = $System->Database->query('SELECT * FROM `Referrer` WHERE `Show`=1 AND `DateLast` > (NOW() - INTERVAL 3 MONTH) ORDER BY `DateLast` DESC'); 21 21 22 22 echo('<br/><strong>Servery odkazující na nás:</strong> <br /> 23 <div style="font-size: 10px;">Seznam je automaticky aktualizován a zobrazeny jsou servery, ze kterých přišli uživatelé během posledních třech měsíců .</div><br />');23 <div style="font-size: 10px;">Seznam je automaticky aktualizován a zobrazeny jsou servery, ze kterých přišli uživatelé během posledních třech měsíců řazený sestupně dle nejnovějších.</div><br />'); 24 24 while($Line = $DbResult->fetch_assoc()) 25 25 { -
trunk/includes/global.php
r462 r465 48 48 $DbResult = $System->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC LIMIT 30'); 49 49 while($Line = $DbResult->fetch_assoc()) 50 echo('<tr><td><strong>'.$Line['User'].'</strong>: '. htmlspecialchars($Line['Text']).'</td></tr>');50 echo('<tr><td><strong>'.$Line['User'].'</strong>: '.MakeActiveLinks(htmlspecialchars($Line['Text'])).'</td></tr>'); 51 51 echo('</table></div>'); 52 52 } -
trunk/includes/global_function.php
r462 r465 557 557 } 558 558 559 function MakeActiveLinks($Content) 560 { 561 $Result = ''; 562 $I = 0; 563 while(strpos($Content, 'http://') !== false) 564 { 565 $I = strpos($Content, 'http://'); 566 $Result .= substr($Content, 0, $I); 567 $Content = substr($Content, $I); 568 if(strpos($Content, ' ') !== false) 569 $URL = substr($Content, 0, strpos($Content, ' ')); 570 else $URL = substr($Content, 0); 571 $Result .= '<a href="'.$URL.'">'.$URL.'</a>'; 572 $Content = substr($Content, strlen($URL)); 573 } 574 $Result .= $Content; 575 return($Result); 576 } 577 559 578 ?>
Note:
See TracChangeset
for help on using the changeset viewer.