From: Michael Rasmussen Date: Fri, 18 Jul 2014 20:31:33 +0000 (+0200) Subject: replace deprecated function join with implode X-Git-Url: http://git.datanom.net/omvzfs.git/commitdiff_plain/da22577f5417be015c11b6325bfa69997d6417d4 replace deprecated function join with implode --- diff --git a/src/Zpool.php b/src/Zpool.php index fefd427..4e3401d 100644 --- a/src/Zpool.php +++ b/src/Zpool.php @@ -616,7 +616,7 @@ class OMVModuleZFSZpool extends OMVModuleAbstract array_push ($adds, $command . $diskStr); } - return join(" ", $adds); + return implode(" ", $adds); } /**