Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
ba035595
Commit
ba035595
authored
Sep 09, 2011
by
xaver
Browse files
Added part of #1594, removed PHP Deprecated: Call-time pass-by-reference
parent
ee5a16e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/monitor/show_sys_state.php
View file @
ba035595
...
...
@@ -196,7 +196,7 @@ function _getServerState($serverId, $serverName) {
$ispcData
=
null
;
foreach
(
$records
as
$record
)
{
/* get the state from the db-data */
_processDbState
(
$record
[
'type'
],
$serverId
,
&
$serverState
,
&
$messages
);
_processDbState
(
$record
[
'type'
],
$serverId
,
$serverState
,
$messages
);
/* if we have the os-info, get it */
if
(
$record
[
'type'
]
==
'os_info'
)
{
$osData
=
unserialize
(
$record
[
'data'
]);
...
...
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