From d850b1ec34062f486e17c15cc249e583aa712fa3 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 4 Dec 2016 15:50:30 -0800 Subject: [PATCH] Issue #2110 - Install error --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index b0a73d8c5..3954565dd 100644 --- a/install.php +++ b/install.php @@ -137,7 +137,7 @@ $override = array(); if(isset($_POST['previous_steps'])) { $tmp = unserialize(base64_decode($_POST['previous_steps'])); - $tmp = $tp->filter($tmp); + $tmp = filter_var_array($tmp, FILTER_SANITIZE_STRING); $override = (isset($tmp['paths']['hash'])) ? array('site_path'=>$tmp['paths']['hash']) : array(); unset($tmp); }