Opened 13 years ago
Closed 12 years ago
Last modified 12 years ago
#11893 closed Patch - Bug Fix (fixed)
Sorting by Season/Episode fails for series with seasons > 9
| Reported by: | Owned by: | Karl Egly | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.26.2 |
| Component: | Plugin - MythWeb | Version: | 0.26 |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
Fix in includes/sorting.php
$ diff sorting.php sorting.php.orig
149,150c149,150 < $asep = sprintf("%02dx%03d", $a->season, $a->episode); < $bsep = sprintf("%02dx%03d", $b->season, $b->episode); ---
$asep = $a->season.'x'.str_pad($a->episode,2,"0",STR_PAD_LEFT); $bsep = $b->season.'x'.str_pad($b->episode,2,"0",STR_PAD_LEFT);
Change History (4)
Note:
See TracTickets
for help on using tickets.

In 86d4b489d5b633c5d92bc1adbc94ccc9485098e6/mythweb: