| 213,12 → 213,18 |
| ?></span></th> |
| <td<?php if ($recommended) { ?> class="recommended"<?php } ?>> |
| <div><?php echo $this->_('Watched:'); ?> <?php |
| echo $this->getCoverage($serie->seen) . ' ('. $serie->count; |
| ?> von <?php $total = $serie->total; echo $total; ?> <?php echo $this->_('episodes'); ?>)<?php |
| $total = $serie->total; |
| echo $this->getCoverage($serie->seen) |
| . ' (' |
| . sprintf($this->_('%s of %s episodes'), $serie->count, $total) |
| . ')'; |
| |
| if ($serie->last_seen) |
| { |
| ?>; zuletzt am <?php |
| echo utf8_encode(strftime_portable('%A, %e. %B %Y %H:%M %z', $serie->last_seen)); |
| $last_seen = strftime_portable('%A, %e. %B %Y %H:%M %z', $serie->last_seen); |
| // var_dump($serie); |
| echo mb_detect_encoding($last_seen) == 'UTF-8' ? $last_seen : utf8_encode($last_seen ); |
| } |
| ?></div> |
| <div class="box"> |