mirror of
https://github.com/znc/znc.git
synced 2026-05-09 06:44:40 +02:00
Another patch by BrianC, building upon the previous revision,
this uses the new sort feature to sort channel tables in stickychan's and webadmin's channel tables and webadmin's user table, also the module names in the menu. Hooray! git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1949 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<? LOOP ChannelLoop ?>
|
||||
<? LOOP ChannelLoop SORTASC=Name ?>
|
||||
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
||||
<td><? VAR Name ?></td>
|
||||
<td><input type="checkbox" name="stick_<? VAR Name ?>"<? IF Sticky ?> checked="checked"<? ENDIF ?> /></td>
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<? LOOP ChannelLoop ?>
|
||||
<? LOOP ChannelLoop SORTASC=Name ?>
|
||||
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
||||
<td>
|
||||
<input type="hidden" name="channel" value="<? VAR Name ?>" />
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?LOOP UserLoop?>
|
||||
<?LOOP UserLoop SORTASC=Username ?>
|
||||
<tr class="<?IF __EVEN__?>evenrow<?ELSE?>oddrow<?ENDIF?>">
|
||||
<td>
|
||||
<span class="nowrap">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<li class="topitem<? IF !ModName && PageName == "index" ?> active<? ENDIF ?>"><a href="/">Home</a></li>
|
||||
<li class="topitem<? IF !ModName && PageName == "help" ?> active<? ENDIF ?>"><a href="/help">Help</a></li>
|
||||
|
||||
<? IF GlobalModLoop ?>
|
||||
<? IF GlobalModLoop SORTASC=ModName ?>
|
||||
<li class="topitem parent"><span class="title">Global Modules</span>
|
||||
<ul>
|
||||
<? LOOP GlobalModLoop ?>
|
||||
@@ -16,7 +16,7 @@
|
||||
</li>
|
||||
<? ENDIF ?>
|
||||
|
||||
<? IF UserModLoop ?>
|
||||
<? IF UserModLoop SORTASC=ModName ?>
|
||||
<li class="topitem parent"><span class="title">User Modules</span>
|
||||
<ul>
|
||||
<? LOOP UserModLoop ?>
|
||||
|
||||
Reference in New Issue
Block a user