Changeset 594 for trunk/Common/Page.php
- Timestamp:
- Nov 2, 2013, 11:23:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r590 r594 87 87 $Output .= '<div id="Title">'.$Title.'</div> 88 88 <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 89 if( $this->System->Config['Web']['UserSupport'] == 1)89 if(isset($this->System->User) and ($this->System->Config['Web']['UserSupport'] == 1)) 90 90 { 91 if( isset($this->System->User) and ($this->System->User->User['Id'] == null))91 if($this->System->User->User['Id'] == null) 92 92 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '. 93 93 '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>';
Note:
See TracChangeset
for help on using the changeset viewer.