Ignore:
Timestamp:
Sep 11, 2008, 9:10:27 AM (16 years ago)
Author:
george
Message:
  • Aktualizováno: Minimanager 0.12 rev. 99. Opraveno zobrazování honoru, přidána captcha p?i registraci nového účtu a mini fórum.
  • Přidáno: Český překlad pro Minimanager 0.12.
  • Smazáno: Staré fotky fyzického serveru přesunuty do fotogalerie.
  • Přidáno: Nějaké návody na eventy od bbtrashe.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/scripts/global_lib.php

    r19 r374  
    1414//to avoid Strict Standards notices in php 5.1
    1515if (function_exists ('date_default_timezone_set') ) {
    16         date_default_timezone_set('UTC');
     16        date_default_timezone_set($timezone);
    1717}
    1818
     
    4141function maketooltip($text, $link, $tip, $class, $target = "target=\"_self\"") {
    4242 global $output;
    43  $output .="<a style=\"padding:2px;\" href=\"$link\" $target onmouseover=\"toolTip('".addslashes($tip)."','$class')\" onmouseout=\"toolTip()\">$text</a>";
     43 //COMMENTED OUT SINCE WE WANT WOWHEAD TOOLTIPS ONLY
     44 //$output .="<a style=\"padding:2px;\" href=\"$link\" $target onmouseover=\"toolTip('".addslashes($tip)."','$class')\" onmouseout=\"toolTip()\">$text</a>";
     45
     46 //ADDED:
     47 $output .="<a style=\"padding:2px;\" href=\"$link\" $target>$text</a>";
     48 //ENDOF ADDED
    4449}
    4550
     
    5257        } else die('<meta http-equiv="refresh" content="0;URL='.$url.'" />');
    5358}
    54        
     59
     60//work around for MSIE and wowhead tooltip display error
     61if (ereg("MSIE" , $_SERVER["HTTP_USER_AGENT"])) {
     62     $tt_scrip = "";
     63} else {
     64     $tt_scrip = "http://www.wowhead.com/widgets/power.js";
     65}
     66
    5567//##########################################################################################
    5668// Generate paging navigation.
Note: See TracChangeset for help on using the changeset viewer.