Rev 201 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 201 | Rev 208 | ||
---|---|---|---|
Line 211... | Line 211... | ||
211 | echo ', ' . $serie->showtimes; |
211 | echo ', ' . $serie->showtimes; |
212 | }
|
212 | }
|
213 | ?></span></th>
|
213 | ?></span></th>
|
214 | <td<?php if ($recommended) { ?> class="recommended"<?php } ?>> |
214 | <td<?php if ($recommended) { ?> class="recommended"<?php } ?>> |
215 | <div><?php echo $this->_('Watched:'); ?> <?php |
215 | <div><?php echo $this->_('Watched:'); ?> <?php |
- | 216 | $total = $serie->total; |
|
216 | echo $this->getCoverage($serie->seen) . ' ('. $serie->count; |
217 | echo $this->getCoverage($serie->seen) |
- | 218 | . ' (' |
|
217 | ?> von <?php $total = $serie->total; echo $total; ?> <?php echo $this->_('episodes'); ?>)<?php |
219 | . sprintf($this->_('%s of %s episodes'), $serie->count, $total) |
- | 220 | . ')'; |
|
- | 221 | ||
218 | if ($serie->last_seen) |
222 | if ($serie->last_seen) |
219 | {
|
223 | {
|
220 | ?>; zuletzt am <?php |
224 | ?>; zuletzt am <?php |
221 | echo utf8_encode(strftime_portable('%A, %e. %B %Y %H:%M %z', $serie->last_seen)); |
225 | $last_seen = strftime_portable('%A, %e. %B %Y %H:%M %z', $serie->last_seen); |
- | 226 | // var_dump($serie);
|
|
- | 227 | echo mb_detect_encoding($last_seen) == 'UTF-8' ? $last_seen : utf8_encode($last_seen ); |
|
222 | }
|
228 | }
|
223 | ?></div>
|
229 | ?></div>
|
224 | <div class="box"> |
230 | <div class="box"> |
225 | <div class="meter" |
231 | <div class="meter" |
226 | style="width: <?php
|
232 | style="width: <?php
|