Changeset 567 for trunk/Common
- Timestamp:
- Sep 8, 2013, 2:28:15 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r565 r567 71 71 { 72 72 if($this->System->User->User['Id'] == null) 73 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> <a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 74 else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 73 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '. 74 '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 75 else $Output .= $this->System->User->User['Name']. 76 ' <a href="'.$this->System->Link('/?Action=UserMenu').'">Nabídka</a>'. 77 ' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 75 78 } else $Output .= ' '; 76 79 // <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>'; -
trunk/Common/Version.php
r565 r567 1 1 <?php 2 2 3 $Revision = 56 5; // Subversion revision3 $Revision = 567; // Subversion revision 4 4 $DatabaseRevision = 565; // SQL structure revision 5 $ReleaseTime = '2013-09-0 1';5 $ReleaseTime = '2013-09-08';
Note:
See TracChangeset
for help on using the changeset viewer.