From da22577f5417be015c11b6325bfa69997d6417d4 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Fri, 18 Jul 2014 22:31:33 +0200 Subject: [PATCH] replace deprecated function join with implode --- src/Zpool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /** -- 2.39.2