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:
cflakes
2010-04-28 22:00:26 +00:00
parent db8872523a
commit 65f3478469
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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>
+1 -1
View File
@@ -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 ?>" />
+1 -1
View File
@@ -18,7 +18,7 @@
</thead>
<tbody>
<?LOOP UserLoop?>
<?LOOP UserLoop SORTASC=Username ?>
<tr class="<?IF __EVEN__?>evenrow<?ELSE?>oddrow<?ENDIF?>">
<td>
<span class="nowrap">
+2 -2
View File
@@ -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 ?>