diff options
| author | Simon | 2011-04-13 16:14:53 +0200 |
|---|---|---|
| committer | Simon | 2011-04-13 16:14:53 +0200 |
| commit | f647d6e1803ba8f89cdc3304a06b5a878cc2f990 (patch) | |
| tree | 9de7aee27022711f1fe29d78b0bef38f920bc905 /application/modules/user/views | |
| parent | bugfix in sql (diff) | |
| download | pbs2-f647d6e1803ba8f89cdc3304a06b5a878cc2f990.tar.gz pbs2-f647d6e1803ba8f89cdc3304a06b5a878cc2f990.tar.xz pbs2-f647d6e1803ba8f89cdc3304a06b5a878cc2f990.zip | |
kleines bugfix in own details
Diffstat (limited to 'application/modules/user/views')
| -rw-r--r-- | application/modules/user/views/scripts/person/owndetails.phtml | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/application/modules/user/views/scripts/person/owndetails.phtml b/application/modules/user/views/scripts/person/owndetails.phtml index 4547e23..0430623 100644 --- a/application/modules/user/views/scripts/person/owndetails.phtml +++ b/application/modules/user/views/scripts/person/owndetails.phtml @@ -12,29 +12,28 @@ label { <div class='content'> <div class='title'><?php echo $this->person->getTitle()." ".$this->person->getFirstname()." ".$this->person->getName(); ?></div> <div class='subtitle'><?php echo $this->person->getEmail(); ?></div> - <div class='details'><label>Street:</label> - <div class='item'><?php echo $this->person->getStreet(); ?> </div> - <label>Housenumber:</label> - <div class='item'><?php echo $this->person->getHousenumber(); ?> </div> - <label>City:</label> - <div class='item'><?php echo $this->person->getCity(); ?> </div> - <label>Postalcode:</label> - <div class='item'><?php echo $this->person->getPostalcode(); ?> </div> - <label>Email:</label> - <div class='item'><?php echo $this->person->getEmail(); ?> </div> - <label>Last Login:</label> - <div class='item'><?php if( $this->person->getLogindate()) echo date ('d. F Y - H:i', $this->person->getLogindate()) . " Uhr"; ?> </div> - <label>Register Date:</label> - <div class='item'><?php echo date ('d. F Y - H:i', $this->person->getRegisterdate()) . ' Uhr'; ?> </div> - <?php if($this->suspendRight === true) - { - ?> <label>Suspended:</label> - <div class='item'><?php if($this->person->getSuspended() == 1) echo "yes"; else echo "no"; ?></div> - <?php - } - ?> - </div> - </div> + <div class='details'><label>Street:</label> + <div class='item'><?php echo $this->person->getStreet(); ?> </div> + <label>Housenumber:</label> + <div class='item'><?php echo $this->person->getHousenumber(); ?> </div> + <label>City:</label> + <div class='item'><?php echo $this->person->getCity(); ?> </div> + <label>Postalcode:</label> + <div class='item'><?php echo $this->person->getPostalcode(); ?> </div> + <label>Email:</label> + <div class='item'><?php echo $this->person->getEmail(); ?> </div> + <label>Last Login:</label> + <div class='item'><?php if( $this->person->getLogindate()) echo date ('d. F Y - H:i', $this->person->getLogindate()) . " Uhr"; ?> </div> + <label>Register Date:</label> + <div class='item'><?php echo date ('d. F Y - H:i', $this->person->getRegisterdate()) . ' Uhr'; ?> </div> + <?php if($this->suspendRight === true) + { + ?> <label>Suspended:</label> + <div class='item'><?php if($this->person->getSuspended() == 1) echo "yes"; else echo "no"; ?></div> + <?php + } + ?> + </div> <div class='clear'></div> </div> </div> |
