Opened 17 years ago

Closed 17 years ago

#2673 closed patch (fixed)

changing the ordering in channel-settingslist

Reported by: fux@… Owned by: xris
Priority: trivial Milestone: unknown
Component: mythweb Version: 0.20
Severity: low Keywords:
Cc: Ticket locked: no

Description

Hio,

I find it more intuitively, ordering the channel-list in mythweb by channelnum and not channelid.

--- modules/settings/channels.php.orig 2006-11-08 18:17:03.000000000 +0100
+++ modules/settings/channels.php 2006-11-08 18:18:17.000000000 +0100
@@ -75,7 +75,7 @@
  // Load all of the channel data from the database
  $Channels = array();
- $sh = $db->query('SELECT * FROM channel ORDER BY chanid');
+ $sh = $db->query('SELECT * FROM channel ORDER BY ABS(channum)');
  while ($row = $sh->fetch_assoc()) {
  $Channels[] = $row;
 }

sincerly,

/fux

Change History (1)

comment:1 Changed 17 years ago by xris

Resolution: fixed
Status: newclosed

fixed in [12302]

Note: See TracTickets for help on using tickets.