From cfbfd9412b70bda8c34127b8b7dfdceff4872390 Mon Sep 17 00:00:00 2001 From: smos Date: Thu, 19 Jan 2012 20:33:41 +0100 Subject: The function split() is replaced by the function explode(). Starting with PHP 5.3 this is deprecated and with version 6 gone. Replacing it surpresses all the warnings --- tmp/post_upgrade_command.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmp') diff --git a/tmp/post_upgrade_command.php b/tmp/post_upgrade_command.php index 8ec4f73..2285ae8 100755 --- a/tmp/post_upgrade_command.php +++ b/tmp/post_upgrade_command.php @@ -23,9 +23,9 @@ $newslicedir = '/tmp' . $ARGV[1]; setup_serial_port("upgrade", $newslicedir); - $files_to_process = split("\n", file_get_contents("/etc/pfSense.obsoletedfiles")); + $files_to_process = explode("\n", file_get_contents("/etc/pfSense.obsoletedfiles")); foreach($files_to_process as $filename) if(file_exists($filename)) exec("/bin/rm -f $filename"); -?> \ No newline at end of file +?> -- cgit v1.1