Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
ccf926ed
Commit
ccf926ed
authored
May 23, 2008
by
tbrehm
Browse files
Fixed bug: missing images in lists.
parent
5f7eea1c
Changes
6
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/listform.inc.php
View file @
ccf926ed
...
...
@@ -224,20 +224,20 @@ class listform {
{
global
$app
;
$content
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
'list_file'
]
.
'?page=0'
.
$vars
[
'page_params'
]
.
"');"
.
'">'
.
'<img src="themes/
grey
/images/btn_left.png" border="0"></a> '
;
.
'<img src="themes/
'
.
$_SESSION
[
's'
][
'theme'
]
.
'
/images/btn_left.png" border="0"></a> '
;
//* Show Back
if
(
isset
(
$vars
[
'show_page_back'
])
&&
$vars
[
'show_page_back'
]
==
1
){
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
'list_file'
]
.
'?page='
.
$vars
[
'last_page'
]
.
$vars
[
'page_params'
]
.
"');"
.
'">'
.
'<img src="themes/
grey
/images/btn_back.png" border="0"></a> '
;
.
'<img src="themes/
'
.
$_SESSION
[
's'
][
'theme'
]
.
'
/images/btn_back.png" border="0"></a> '
;
}
$content
.
=
' '
.
$app
->
lng
(
'Page'
)
.
' '
.
$vars
[
'next_page'
]
.
' '
.
$app
->
lng
(
'of'
)
.
' '
.
$vars
[
'max_pages'
]
.
' '
;
//* Show Next
if
(
isset
(
$vars
[
'show_page_next'
])
&&
$vars
[
'show_page_next'
]
==
1
){
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
'list_file'
]
.
'?page='
.
$vars
[
'next_page'
]
.
$vars
[
'page_params'
]
.
"');"
.
'">'
.
'<img src="themes/
grey
/images/btn_next.png" border="0"></a> '
;
.
'<img src="themes/
'
.
$_SESSION
[
's'
][
'theme'
]
.
'
/images/btn_next.png" border="0"></a> '
;
}
$content
.
=
'<a href="'
.
"javascript:loadContent('"
.
$vars
[
'list_file'
]
.
'?page='
.
$vars
[
'pages'
]
.
$vars
[
'page_params'
]
.
"');"
.
'">'
.
'<img src="themes/
grey
/images/btn_right.png" border="0"></a>'
;
.
'<img src="themes/
'
.
$_SESSION
[
's'
][
'theme'
]
.
'
/images/btn_right.png" border="0"></a>'
;
return
$content
;
}
...
...
interface/web/themes/default/images/btn_back.png
0 → 100644
View file @
ccf926ed
568 Bytes
interface/web/themes/default/images/btn_filter.png
0 → 100644
View file @
ccf926ed
556 Bytes
interface/web/themes/default/images/btn_left.png
0 → 100644
View file @
ccf926ed
408 Bytes
interface/web/themes/default/images/btn_next.png
0 → 100644
View file @
ccf926ed
565 Bytes
interface/web/themes/default/images/btn_right.png
0 → 100644
View file @
ccf926ed
413 Bytes
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment