|
Revision 2842, 0.7 kB
(checked in by diego_iastrubni, 7 years ago)
|
continue fixing ticket:1202
- now rnav is also a <ul></ul> list.
- current is a class and not id
- core module href use & instad of &
- rnav will not be generated with empty <li>
basically the core module should be clean enough. i also tried not to break any new things in non patched modules. the only problem, is that id="current" does not make the current item bold anymore. my next goal will be fixing the needed modules, so this is not a big problem on the long term.
module maintainers: please make my life easier and work for me
:)
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
//Copyright (C) 2004 Coalescent Systems Inc. (info@coalescentsystems.ca) |
|---|
| 3 |
// |
|---|
| 4 |
//This program is free software; you can redistribute it and/or |
|---|
| 5 |
//modify it under the terms of the GNU General Public License |
|---|
| 6 |
//as published by the Free Software Foundation; either version 2 |
|---|
| 7 |
//of the License, or (at your option) any later version. |
|---|
| 8 |
// |
|---|
| 9 |
//This program is distributed in the hope that it will be useful, |
|---|
| 10 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 |
//GNU General Public License for more details. |
|---|
| 13 |
?> |
|---|
| 14 |
|
|---|
| 15 |
<div class="rnav"> |
|---|
| 16 |
<?php |
|---|
| 17 |
$extens = core_users_list(); |
|---|
| 18 |
drawListMenu($extens, $skip, $type, $display, $extdisplay, _("Extension")); |
|---|
| 19 |
?> |
|---|
| 20 |
<br /> |
|---|
| 21 |
</div> |
|---|
| 22 |
|
|---|