mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Added 'login' link to booking form footer for easy backend navigation (fixes #180).
This commit is contained in:
parent
7a5b07a4cf
commit
12f82fd688
1 changed files with 6 additions and 6 deletions
|
@ -368,12 +368,12 @@
|
|||
<span id="select-language" class="label label-success">
|
||||
<?php echo ucfirst($this->config->item('language')); ?>
|
||||
</span>
|
||||
<?php if ($this->session->userdata('user_id')): ?>
|
||||
|
|
||||
<a href="<?php echo site_url('backend'); ?>">
|
||||
<?php echo $this->lang->line('backend_section'); ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
|
|
||||
<a href="<?php echo site_url('backend'); ?>">
|
||||
<?php echo $this->session->userdata('user_id')
|
||||
? $this->lang->line('backend_section')
|
||||
: $this->lang->line('login'); ?>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue