Changeset 690 for trunk/inc/player.php


Ignore:
Timestamp:
Mar 19, 2010, 9:22:00 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Zavedení systému pěkných URL. Přejmenováno mnoho stránek.
  • Přidáno: Skript pro generování SERVERALERT aktualit pro klienta.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/inc/player.php

    r685 r690  
    1414  private function Msg($text, $err)
    1515  {
    16     if($err == 0) echo('<img src="imgs/inc/on.gif">&nbsp;<font color="#234303" size="4">'.$text.'</font><br />');
    17       else echo('<img src="imgs/inc/off.gif">&nbsp;<font color="#990000" size="4\">'.$text.'</font><br />');
     16    global $html;
     17   
     18    if($err == 0) echo('<img src="'.$html->Link('/imgs/inc/on.gif').'">&nbsp;<font color="#234303" size="4">'.$text.'</font><br />');
     19      else echo('<img src="'.$html->Link('imgs/inc/off.gif').'">&nbsp;<font color="#990000" size="4\">'.$text.'</font><br />');
    1820  }
    1921
     
    3133        ' VALUES (NULL , "'.$acc_name.'", "'.$sha_pass.'", 0, NULL , NULL , NULL , "'.$email.'", CURRENT_TIMESTAMP , "'.$_SERVER['REMOTE_ADDR'].'", 0, 0, "0000-00-00 00:00:00", 0, "'.$tbc.'", 0, 0)');
    3234      $this->Msg('Účet založen úspěšně', 0);
    33       echo('<meta http-equiv="refresh" content="0;?page=acc">');
     35      echo('<meta http-equiv="refresh" content="0;'.$html->Link('/ucet/').'">');
    3436    } else
    3537    {
     
    8082  public function LoginForm()
    8183  {
    82     echo('<form method="post" action="?page=acc">'.
     84    global $html;
     85   
     86    echo('<form method="post" action="'.$html->Link('/ucet/').'">'.
    8387     '<table>'.
    8488    '<tr>'.
     
    9498            </form>
    9599            <div align="left">
    96             <a href="?page=register">Registrace</a><br />'. //<a href="?page=lostpass">Obnova hesla</a>
     100            <a href="'.$html->Link('/registrace/').'">Registrace</a><br />'. //<a href="?page=lostpass">Obnova hesla</a>
    97101            '</div>');
    98102   }
Note: See TracChangeset for help on using the changeset viewer.