Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7b57cdc5
authored
2011-02-14 19:53:07 +0000
by
Kevin Burton
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
martys changes to the User Manager
1 parent
01bd83f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
com/UserManager/views/display_users.php
com/UserManager/views/display_users.php
View file @
7b57cdc
...
...
@@ -55,10 +55,10 @@ $tag = '[pagenum]';
$template
=
'<a href="'
.
$url
.
$tag
.
'">'
.
$tag
.
'</a>'
;
$template_with_class
=
'<a href="'
.
$url
.
$tag
.
'" class="active">'
.
$tag
.
'</a>'
;
$prev_link
=
(
$pagenum
==
1
)
?
''
:
' <a href="'
.
$url
.
(
$pagenum
-
1
)
.
'">
<
</a> '
;
$next_link
=
(
$pagenum
==
$last
)
?
''
:
' <a href="'
.
$url
.
(
$pagenum
+
1
)
.
'">
>
</a> '
;
$first_link
=
' <a href="'
.
$url
.
'1">
<<
</a> '
;
$last_link
=
' <a href="'
.
$url
.
$last
.
'">
>>
</a> '
;
$prev_link
=
(
$pagenum
==
1
)
?
''
:
' <a href="'
.
$url
.
(
$pagenum
-
1
)
.
'">
Prev
</a> '
;
$next_link
=
(
$pagenum
==
$last
)
?
''
:
' <a href="'
.
$url
.
(
$pagenum
+
1
)
.
'">
Next
</a> '
;
$first_link
=
' <a href="'
.
$url
.
'1">
First
</a> '
;
$last_link
=
' <a href="'
.
$url
.
$last
.
'">
Last
</a> '
;
$pager
=
''
;
...
...
Please
register
or
sign in
to post a comment