From c974eebe7a33054940450ae3903840416706b14c Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Thu, 12 Mar 2015 12:41:11 -0400 Subject: [PATCH] Revert deparam fix typo repair. --- themes/bootstrap3/js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js index a5c74d9c26d..bf777b21207 100644 --- a/themes/bootstrap3/js/common.js +++ b/themes/bootstrap3/js/common.js @@ -63,7 +63,7 @@ function deparam(url) { if(!request[name]) { request[name] = []; } - request[name].push(decodeURIComponent(pair[1].replace(/+/g, ' '))); + request[name].push(decodeURIComponent(pair[1].replace(/\+/g, ' '))); } else { request[name] = decodeURIComponent(pair[1].replace(/\+/g, ' ')); } -- GitLab