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
Dirk Dankhoff
ISPConfig 3
Commits
58d1f15b
Commit
58d1f15b
authored
Dec 15, 2011
by
tbrehm
Browse files
Fixed: FS#1891 - PHP Deprecated Function split() in mysql_clientdb_plugin.inc.php
parent
876d6703
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/mysql_clientdb_plugin.inc.php
View file @
58d1f15b
...
...
@@ -75,7 +75,7 @@ class mysql_clientdb_plugin {
if
(
trim
(
$host_list
)
==
''
)
$host_list
=
'%'
;
// process arrays and comma separated strings
if
(
!
is_array
(
$host_list
))
$host_list
=
split
(
','
,
$host_list
);
if
(
!
is_array
(
$host_list
))
$host_list
=
explode
(
','
,
$host_list
);
$success
=
true
;
...
...
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