From aa2f8cab826f902b8a9637f18d439900e3d269d2 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Wed, 31 Oct 2012 09:17:22 +0545 Subject: Replace deprecated split with explode --- usr/local/www/pkg_mgr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php index 8df8258..708e7e8 100755 --- a/usr/local/www/pkg_mgr.php +++ b/usr/local/www/pkg_mgr.php @@ -177,7 +177,7 @@ include("head.inc"); (pfs_version_compare("", $version, $index['maximum_version']) > 0)) continue; /* get history/changelog git dir */ - $commit_dir=split("/",$index['config_file']); + $commit_dir=explode("/",$index['config_file']); $changeloglink ="https://github.com/bsdperimeter/pfsense-packages/commits/master/config/".$commit_dir[(count($commit_dir)-2)]; /* Check package info link */ if($index['pkginfolink']){ -- cgit v1.1