Changeset 809


Ignore:
Timestamp:
May 25, 2014, 1:11:07 PM (10 years ago)
Author:
chronos
Message:
 
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Dictionary/Dictionary.php

    r790 r809  
    223223       
    224224  $Output .= '<tr><td>
    225     <input type="text" value="'.htmlentities($Search).'" name="search" size="30" />
     225    <input type="text" value="'.$Search.'" name="search" size="30" />
    226226    <input type="submit" value="'.T('Search').'" />';
    227227  if($this->System->User->Licence(LICENCE_USER))
  • trunk/Modules/Export/Page.php

    r802 r809  
    397397                        $Sequence = '<input type="text" name="seq'.$Langugage['Id'].'" style="text-align: center; width: 40px;" value="'.$Langugage['Sequence2'].'"'.$DisabledInput[$Editable].'/>';
    398398                        $Output .= '<tr>
    399                         <td>'.$Langugage['Name'].'</a></td>
     399                        <td>'.$Langugage['Name'].'</td>
    400400                        <td>'.$Selection.'</td><td>'.$Sequence.'</td></tr>';
    401401                }
  • trunk/Modules/FrontPage/FrontPage.php

    r801 r809  
    8282                '<table class="Home"><tr><td colspan="3">'.$this->ShowWelcome().
    8383                '</td></tr>';
    84     $Output .= '<tr><td><h3><a href="'.$this->System->Link('/download/').'">'.T('Download Czech File').'</a></h3></td></tr>';
     84    $Output .= '<tr><td colspan="3"><h3><a href="'.$this->System->Link('/download/').'">'.T('Download Czech File').'</a></h3></td></tr>';
    8585
    86         $Output .= '<tr><td>'.$this->ShowLastTranslated().'</td>'.
     86        $Output .= '<tr><td class="SideBox">'.$this->ShowLastTranslated().'</td>'.
    8787                        '<td class="news-box">'.$this->System->ModuleManager->Modules['News']->ShowBox().'</td>'.
    88                         '<td>'.$this->System->ModuleManager->Modules['ShoutBox']->ShowBox().'</td>'.
     88                        '<td class="SideBox">'.$this->System->ModuleManager->Modules['ShoutBox']->ShowBox().'</td>'.
    8989                        '</tr></table>';
    9090         return($Output);
  • trunk/includes/system.php

    r807 r809  
    292292                                        '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a>';
    293293                }
    294                 $Output .= ' <form action="?setlocale" method="get">';
    295                 $Output .= '<select onchange="window.location=\'?locale=\'+this.value">';
     294                //$Output .= ' <form action="?setlocale" method="get">';
     295                $Output .= ' <select onchange="window.location=\'?locale=\'+this.value">';
    296296                foreach($LocaleManager->Available as $Locale)
    297297                {
     
    300300                        $Output .= '<option title="" value="'.$Locale['Code'].'"'.$Selected.' onchange="this.form.submit()">'.$Locale['Title'].'</option>';
    301301                }
    302                 $Output .= '</select><noscript><input type="submit" value="Submit"/></noscript></form>';
     302                $Output .= '</select><noscript><span><input type="submit" value="Submit"/></span></noscript>';
     303                //$Output .= '</form>';
    303304                $Output .= '</span></div>';
    304305                return($Output);
     
    392393        function ShowHeader()
    393394        {
    394                 $Output = '<?xml version="1.0" encoding="'.$this->System->Config['Web']['Charset'].'"?>'.
    395                 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'.
    396                 '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cz">'.
     395                $Output = ''.
     396                '<!DOCTYPE html>'.
     397                '<html>'.
    397398                '<head>'.
    398                 '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this->System->Config['Web']['Charset'].'" />'.
     399                '<meta http-equiv="content-type" content="text/html; charset='.$this->System->Config['Web']['Charset'].'" />'.
    399400                '<meta name="keywords" content="wow, quest, questy, questů, preklad, mangos, překlad, překládání, přeložený, přeložení, čeština, world of warcraft, open source, free, addon" />'.
    400401                '<meta name="description" content="'.$this->System->Config['Web']['Description'].'" />'.
  • trunk/style/style.css

    r593 r809  
    355355}
    356356
     357.Home
     358{
     359        width: 100%;
     360}
     361       
    357362.Home tr td
    358363{
     
    546551  text-align: center;
    547552}
     553
     554.SideBox
     555{
     556  width: 25%;
     557}
Note: See TracChangeset for help on using the changeset viewer.