mirror of
https://github.com/znc/znc.git
synced 2026-08-08 09:52:55 +02:00
Use relative instead of absolute URLs in webadmin
This should make it possible to use webadmin together with apache's mod_proxy. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1253 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<? INC Header.tmpl ?>
|
||||
<?IF !UserLoop?>
|
||||
There are no users defined. Click <a href="/adduser">here</a> if you would like to add one.
|
||||
There are no users defined. Click <a href="adduser">here</a> if you would like to add one.
|
||||
<?ELSE?>
|
||||
<table>
|
||||
<thead>
|
||||
@@ -17,8 +17,8 @@
|
||||
<tr class="<?IF __EVEN__?>evenrow<?ELSE?>oddrow<?ENDIF?>">
|
||||
<td>
|
||||
<span class="nowrap">
|
||||
[<a href="/edituser?user=<?VAR Username ESC=URL?>">Edit</a>]
|
||||
<? IF !IsSelf ?>[<a href="/deluser?user=<?VAR Username ESC=URL?>" onClick="return confirm('Do you really wish to remove this user?');">Delete</a>]<? ENDIF ?>
|
||||
[<a href="edituser?user=<?VAR Username ESC=URL?>">Edit</a>]
|
||||
<? IF !IsSelf ?>[<a href="deluser?user=<?VAR Username ESC=URL?>" onClick="return confirm('Do you really wish to remove this user?');">Delete</a>]<? ENDIF ?>
|
||||
</span>
|
||||
</td>
|
||||
<td><? VAR Username ESC=HTML ?></td>
|
||||
|
||||
Reference in New Issue
Block a user